X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_sparse_vec.py;h=6b1cb2885e04d2425e1c36b86bf24229ff290cf2;hb=d9b0c6fbf7aa5bd9af84264105b39c82028a4a29;hp=a683faefd5790e0154cbcc8b1f3601086b776641;hpb=f90348bcb4afd0af2611cefc43b17ef3042b511c;p=vpp.git diff --git a/test/test_sparse_vec.py b/test/test_sparse_vec.py index a683faefd57..6b1cb2885e0 100644 --- a/test/test_sparse_vec.py +++ b/test/test_sparse_vec.py @@ -7,7 +7,7 @@ from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath class TestSparseVec(VppTestCase): - """ SparseVec Test Cases """ + """SparseVec Test Cases""" @classmethod def setUpClass(cls): @@ -24,11 +24,12 @@ class TestSparseVec(VppTestCase): super(TestSparseVec, self).tearDown() def test_string_unittest(self): - """ SparseVec unit tests """ + """SparseVec unit tests""" error = self.vapi.cli("test sparse_vec") if error.find("failed") != -1: self.logger.critical("FAILURE in the sparse_vec test") self.assertNotIn("failed", error) -if __name__ == '__main__': + +if __name__ == "__main__": unittest.main(testRunner=VppTestRunner)