runner: rename method name

This commit is contained in:
httprunner
2017-09-25 15:47:47 +08:00
parent 94b6202d2d
commit 102af87e61
4 changed files with 17 additions and 23 deletions

View File

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