diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-03-07 17:55:33 -0800 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-03-11 09:20:04 +0000 |
commit | 22ab6f7cbb0f6139302aa6ca9f0c96dba17a37a7 (patch) | |
tree | 8995c48ce73519b8adc0c2b484e7a5eee66c28ff /test/test_gbp.py | |
parent | eb9a27f247e521a80ce5a3ab31b1e3a483afefab (diff) |
VPP-1508: Tests: Fix vpp_api struct.error under py3.
Fix struct.error: expected bytes object got <class 'str'>
Change-Id: I837ae6e97e44c789a9372677151b157956525334
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/test_gbp.py')
-rw-r--r-- | test/test_gbp.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_gbp.py b/test/test_gbp.py index a5f053dcacc..09d218d8ac3 100644 --- a/test/test_gbp.py +++ b/test/test_gbp.py @@ -545,8 +545,8 @@ class VppGbpAcl(VppObject): self.acl_index = 4294967295 def create_rule(self, is_ipv6=0, permit_deny=0, proto=-1, - s_prefix=0, s_ip='\x00\x00\x00\x00', sport_from=0, - sport_to=65535, d_prefix=0, d_ip='\x00\x00\x00\x00', + s_prefix=0, s_ip=b'\x00\x00\x00\x00', sport_from=0, + sport_to=65535, d_prefix=0, d_ip=b'\x00\x00\x00\x00', dport_from=0, dport_to=65535): if proto == -1 or proto == 0: sport_to = 0 @@ -569,7 +569,7 @@ class VppGbpAcl(VppObject): reply = self._test.vapi.acl_add_replace(self.acl_index, r=rules, - tag='GBPTest') + tag=b'GBPTest') self.acl_index = reply.acl_index return self.acl_index |