remove return from _run_test

This commit is contained in:
httprunner
2018-02-19 23:41:37 +08:00
parent 3543f62e9e
commit 842a3aeff5
3 changed files with 5 additions and 7 deletions

View File

@@ -15,7 +15,7 @@ class ApiTestCase(unittest.TestCase):
def runTest(self):
""" run testcase and check result.
"""
self.assertTrue(self.test_runner._run_test(self.testcase_dict))
self.test_runner._run_test(self.testcase_dict)
class ApiTestSuite(unittest.TestSuite):
""" create test suite with a testset, it may include one or several testcases.