X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_vxlan.py;h=692930eb1f29cb301c00d12159f7e272e559da5f;hb=5f9f3c8de8d5d9f83a437661a98e5cc2453705f9;hp=c74efe7d062c690bfc4abb080937bd0f477c0bff;hpb=097fa66b986f06281f603767d321ab13ab6c88c3;p=vpp.git diff --git a/test/test_vxlan.py b/test/test_vxlan.py index c74efe7d062..692930eb1f2 100644 --- a/test/test_vxlan.py +++ b/test/test_vxlan.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import socket from util import ip4n_range, ip4_range, reassemble4 @@ -236,7 +236,7 @@ class TestVxlan(BridgeDomain, VppTestCase): frame = (Ether(src='00:00:00:00:00:02', dst='00:00:00:00:00:01') / IP(src='4.3.2.1', dst='1.2.3.4') / UDP(sport=20000, dport=10000) / - Raw('\xa5' * 1450)) + Raw(b'\xa5' * 1450)) self.pg1.add_stream([frame])