summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/test_fib.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_fib.py b/test/test_fib.py
index 716ba287e1e..1e28e8f8043 100644
--- a/test/test_fib.py
+++ b/test/test_fib.py
@@ -4,6 +4,7 @@ import unittest
from framework import VppTestCase, VppTestRunner
+
class TestFIB(VppTestCase):
""" FIB Test Case """
@@ -21,7 +22,8 @@ class TestFIB(VppTestCase):
""" FIB Unit Tests """
error = self.vapi.cli("test fib")
- self.logger.critical(error)
+ if error:
+ self.logger.critical(error)
self.assertEqual(error.find("Failed"), -1)
if __name__ == '__main__':