aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_crypto.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_crypto.py')
-rw-r--r--test/test_crypto.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/test_crypto.py b/test/test_crypto.py
index aa62dba1bab..07ddd2c0f08 100644
--- a/test/test_crypto.py
+++ b/test/test_crypto.py
@@ -6,7 +6,7 @@ from framework import VppTestCase, VppTestRunner
class TestCrypto(VppTestCase):
- """ Crypto Test Case """
+ """Crypto Test Case"""
@classmethod
def setUpClass(cls):
@@ -17,12 +17,13 @@ class TestCrypto(VppTestCase):
super(TestCrypto, cls).tearDownClass()
def test_crypto(self):
- """ Crypto Unit Tests """
+ """Crypto Unit Tests"""
error = self.vapi.cli("test crypto")
if error:
self.logger.critical(error)
self.assertNotIn("FAIL", error)
-if __name__ == '__main__':
+
+if __name__ == "__main__":
unittest.main(testRunner=VppTestRunner)