vlib: add 'wait' cli command
[vpp.git] / test / test_fib.py
index 1e28e8f..faafdad 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import unittest
 
@@ -12,11 +12,9 @@ class TestFIB(VppTestCase):
     def setUpClass(cls):
         super(TestFIB, cls).setUpClass()
 
-    def setUp(self):
-        super(TestFIB, self).setUp()
-
-    def tearDown(self):
-        super(TestFIB, self).tearDown()
+    @classmethod
+    def tearDownClass(cls):
+        super(TestFIB, cls).tearDownClass()
 
     def test_fib(self):
         """ FIB Unit Tests """
@@ -24,7 +22,7 @@ class TestFIB(VppTestCase):
 
         if error:
             self.logger.critical(error)
-        self.assertEqual(error.find("Failed"), -1)
+        self.assertNotIn("Failed", error)
 
 if __name__ == '__main__':
     unittest.main(testRunner=VppTestRunner)