diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2017-05-17 14:17:21 +0200 |
---|---|---|
committer | Jose Lausuch <jose.lausuch@ericsson.com> | 2017-05-17 12:59:37 +0000 |
commit | 57da7080488785813adcaff4e2410e2338dccf2a (patch) | |
tree | 3c05ddb9608295d8dbadd9c445cf7a5c7a9b2c85 /functest/utils | |
parent | 0821c4204c7ca470818cfe1c83060fcd2f94e3d6 (diff) |
Update self.result value to INT
So far, the test cases are storing a string "PASS" "FAIL"
in the self.result variable.
The way the new framework works is with INT Values.
Change-Id: I45e8693327740faadd8254b21569adfb2cefa6c8
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'functest/utils')
-rw-r--r-- | functest/utils/functest_utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functest/utils/functest_utils.py b/functest/utils/functest_utils.py index 6be3883f..744258b3 100644 --- a/functest/utils/functest_utils.py +++ b/functest/utils/functest_utils.py @@ -385,8 +385,8 @@ def check_success_rate(case_name, result): logger.warning('check_success_rate will be removed soon') criteria = get_criteria_by_test(case_name) if type(criteria) == int and result >= criteria: - return 'PASS' - return 'FAIL' + return 100 + return 0 def merge_dicts(dict1, dict2): |