diff options
author | Ole Troan <ot@cisco.com> | 2019-11-07 13:52:21 +0100 |
---|---|---|
committer | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-11-08 13:25:56 +0000 |
commit | 770a0deaadfb2d26cbc5da05f84578a7bd92e9d2 (patch) | |
tree | df34de2e51331ab7ae868ecc7f253469f8448981 /src/plugins/abf | |
parent | 76a36e83e39cbf7828a647d8afadfaef642e1c84 (diff) |
tests: python3 use byte strings in raw()
Raw('\xaf) and Raw(b'\xaf) are two quite different things in python 2 versus 3.
In most cases this didn't make a difference, apart from those cases where length
of payload actually mattered.
Type: fix
Signed-off-by: Ole Troan <ot@cisco.com>
Change-Id: I3cba5c1486e436a3ca8aa10a7b393da75aa9f6b9
Diffstat (limited to 'src/plugins/abf')
-rw-r--r-- | src/plugins/abf/test/test_abf.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/abf/test/test_abf.py b/src/plugins/abf/test/test_abf.py index d3500fad2bc..7cffdac74b2 100644 --- a/src/plugins/abf/test/test_abf.py +++ b/src/plugins/abf/test/test_abf.py @@ -197,7 +197,7 @@ class TestAbf(VppTestCase): dst=self.pg0.local_mac) / IP(src="1.1.1.1", dst="1.1.1.2") / UDP(sport=1234, dport=1234) / - Raw('\xa5' * 100)) + Raw(b'\xa5' * 100)) self.send_and_expect(self.pg0, p_1*NUM_PKTS, self.pg1) # @@ -240,7 +240,7 @@ class TestAbf(VppTestCase): dst=self.pg1.local_mac) / IP(src="1.1.1.1", dst="1.1.1.2") / UDP(sport=1234, dport=1234) / - Raw('\xa5' * 100)) + Raw(b'\xa5' * 100)) self.send_and_expect(self.pg1, p_2 * NUM_PKTS, self.pg3) # @@ -318,7 +318,7 @@ class TestAbf(VppTestCase): dst=self.pg0.local_mac) / IPv6(src="2001::2", dst="2001::1") / UDP(sport=1234, dport=1234) / - Raw('\xa5' * 100)) + Raw(b'\xa5' * 100)) # # packets are dropped because there is no route to the policy's |