X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_sctp.py;h=9680774819a83dd50faaf27b13845b30c49bd1da;hb=22ab6f7cbb0f6139302aa6ca9f0c96dba17a37a7;hp=f30feda111ac68934942e81610e6774e7a5c1924;hpb=b0f662fe93f1db0098f7b50306c2f084644788b1;p=vpp.git diff --git a/test/test_sctp.py b/test/test_sctp.py index f30feda111a..9680774819a 100644 --- a/test/test_sctp.py +++ b/test/test_sctp.py @@ -32,10 +32,10 @@ class TestSCTP(VppTestCase): table_id += 1 # Configure namespaces - self.vapi.app_namespace_add(namespace_id="0", - sw_if_index=self.loop0.sw_if_index) - self.vapi.app_namespace_add(namespace_id="1", - sw_if_index=self.loop1.sw_if_index) + self.vapi.app_namespace_add_del(namespace_id=b"0", + sw_if_index=self.loop0.sw_if_index) + self.vapi.app_namespace_add_del(namespace_id=b"1", + sw_if_index=self.loop1.sw_if_index) def tearDown(self): for i in self.lo_interfaces: @@ -66,7 +66,7 @@ class TestSCTP(VppTestCase): "no-echo uri " + uri) if error: self.logger.critical(error) - self.assertEqual(error.find("failed"), -1) + self.assertNotIn("failed", error) error = self.vapi.cli("test echo client mbytes 10 no-return " + " appns 1" + @@ -76,7 +76,7 @@ class TestSCTP(VppTestCase): " uri " + uri) if error: self.logger.critical(error) - self.assertEqual(error.find("failed"), -1) + self.assertNotIn("failed", error) # Delete inter-table routes ip_t01.remove_vpp_config()