diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-05-05 15:24:54 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-05-05 16:19:55 +0200 |
commit | 537b2d246673e47667866636de736a7d9bfb9884 (patch) | |
tree | 4ad8f34488f5989cee5f0c14cd99f0bf714f3d72 /functest/core/testcase.py | |
parent | ee26a1ca85fc5fac6df6c39f362fad83de73c0cc (diff) |
Rename TestCase check_result() to is_successful()
Change-Id: I41cea33b4c1dae79e75231e7c7e069fc89736f34
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/core/testcase.py')
-rw-r--r-- | functest/core/testcase.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functest/core/testcase.py b/functest/core/testcase.py index fd892849..62465542 100644 --- a/functest/core/testcase.py +++ b/functest/core/testcase.py @@ -61,7 +61,7 @@ class TestCase(object): self.__logger.error("Please run test before getting the duration") return "XX:XX" - def check_result(self): + def is_successful(self): """Interpret the result of the test case. It allows getting the result of TestCase. It completes run() @@ -141,7 +141,7 @@ class TestCase(object): assert self.case_name assert self.start_time assert self.stop_time - pub_result = 'PASS' if self.check_result( + pub_result = 'PASS' if self.is_successful( ) == TestCase.EX_OK else 'FAIL' if ft_utils.push_results_to_db( self.project_name, self.case_name, self.start_time, |