X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_vhost.py;h=15eb0701f9183b636234ab0f2510280988f09222;hb=22ab6f7cbb0f6139302aa6ca9f0c96dba17a37a7;hp=9a938214060ccd36881c3a4f4d186ae73cfed045;hpb=eb9a27f247e521a80ce5a3ab31b1e3a483afefab;p=vpp.git diff --git a/test/test_vhost.py b/test/test_vhost.py index 9a938214060..15eb0701f91 100644 --- a/test/test_vhost.py +++ b/test/test_vhost.py @@ -24,12 +24,12 @@ class TesVhostInterface(VppTestCase): self.logger.info("Vhost User add interfaces") # create interface 1 (VirtualEthernet0/0/0) - vhost_if1 = VppVhostInterface(self, sock_filename='/tmp/sock1') + vhost_if1 = VppVhostInterface(self, sock_filename=b'/tmp/sock1') vhost_if1.add_vpp_config() vhost_if1.admin_up() # create interface 2 (VirtualEthernet0/0/1) - vhost_if2 = VppVhostInterface(self, sock_filename='/tmp/sock2') + vhost_if2 = VppVhostInterface(self, sock_filename=b'/tmp/sock2') vhost_if2.add_vpp_config() vhost_if2.admin_up() @@ -86,7 +86,7 @@ class TesVhostInterface(VppTestCase): # (like delete interface events from other tests) self.vapi.collect_events() - vhost_if = VppVhostInterface(self, sock_filename='/tmp/sock1') + vhost_if = VppVhostInterface(self, sock_filename=b'/tmp/sock1') # create vhost interface vhost_if.add_vpp_config()