diff options
author | Jakub Grajciar <jgrajcia@cisco.com> | 2019-09-26 10:21:59 +0200 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-12-11 15:23:55 +0000 |
commit | 5d4c99f27ee89a823d993853fe6b52e12c9e6c58 (patch) | |
tree | 4d28f9790fdeb28bd9d6088d89adde072c51f8d1 /test/test_vhost.py | |
parent | deaf97f4538ac84b4922ef9a14f29699ff898f91 (diff) |
devices: vhost API cleanup
Use consistent API types.
Type: fix
Change-Id: I2dec594cb834a45004edc9ca58ad7c7b4bd7ff06
Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com>
Diffstat (limited to 'test/test_vhost.py')
-rw-r--r-- | test/test_vhost.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_vhost.py b/test/test_vhost.py index b9cc1102d5d..e8cb27d6ed4 100644 --- a/test/test_vhost.py +++ b/test/test_vhost.py @@ -31,12 +31,12 @@ class TesVhostInterface(VppTestCase): self.logger.info("Vhost User add interfaces") # create interface 1 (VirtualEthernet0/0/0) - vhost_if1 = VppVhostInterface(self, sock_filename=b'/tmp/sock1') + vhost_if1 = VppVhostInterface(self, sock_filename='/tmp/sock1') vhost_if1.add_vpp_config() vhost_if1.admin_up() # create interface 2 (VirtualEthernet0/0/1) - vhost_if2 = VppVhostInterface(self, sock_filename=b'/tmp/sock2') + vhost_if2 = VppVhostInterface(self, sock_filename='/tmp/sock2') vhost_if2.add_vpp_config() vhost_if2.admin_up() @@ -93,7 +93,7 @@ class TesVhostInterface(VppTestCase): # (like delete interface events from other tests) self.vapi.collect_events() - vhost_if = VppVhostInterface(self, sock_filename=b'/tmp/sock1') + vhost_if = VppVhostInterface(self, sock_filename='/tmp/sock1') # create vhost interface vhost_if.add_vpp_config() |