X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_vhost.py;h=e8cb27d6ed4e1ca033f0b8a9754d77a9ca851e66;hb=7c0eb56f4;hp=4e5a62d45351b16f1ada072ea5599c6083c1e7a7;hpb=7f9b7f9f492d1748d8ba025b3a713058fdb1943d;p=vpp.git diff --git a/test/test_vhost.py b/test/test_vhost.py index 4e5a62d4535..e8cb27d6ed4 100644 --- a/test/test_vhost.py +++ b/test/test_vhost.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import unittest @@ -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()