diff options
Diffstat (limited to 'test/test_ip_mcast.py')
-rw-r--r-- | test/test_ip_mcast.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_ip_mcast.py b/test/test_ip_mcast.py index cca4f802089..41c6f3bdcaa 100644 --- a/test/test_ip_mcast.py +++ b/test/test_ip_mcast.py @@ -34,7 +34,7 @@ class TestMFIB(VppTestCase): if error: self.logger.critical(error) - self.assertEqual(error.find("Failed"), -1) + self.assertNotIn("Failed", error) class TestIPMcast(VppTestCase): |