aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_api_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_api_client.py')
-rw-r--r--test/test_api_client.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/test_api_client.py b/test/test_api_client.py
index ec44be7e370..200835b0878 100644
--- a/test/test_api_client.py
+++ b/test/test_api_client.py
@@ -7,14 +7,15 @@ from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath
class TestAPIClient(VppTestCase):
- """ API Internal client Test Cases """
+ """API Internal client Test Cases"""
def test_client_unittest(self):
- """ Internal API client """
+ """Internal API client"""
error = self.vapi.cli("test api internal")
if error:
self.logger.critical(error)
- self.assertNotIn('failed', error)
+ self.assertNotIn("failed", error)
-if __name__ == '__main__':
+
+if __name__ == "__main__":
unittest.main(testRunner=VppTestRunner)