summaryrefslogtreecommitdiffstats
path: root/dovetail/report.py
diff options
context:
space:
mode:
Diffstat (limited to 'dovetail/report.py')
-rw-r--r--dovetail/report.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dovetail/report.py b/dovetail/report.py
index a35ec323..d4be67c6 100644
--- a/dovetail/report.py
+++ b/dovetail/report.py
@@ -439,9 +439,9 @@ class YardstickChecker(object):
@staticmethod
def check(testcase, result):
if not result:
- testcase.passed(False)
+ testcase.passed('FAIL')
else:
- testcase.passed(result['criteria'] == 'PASS')
+ testcase.passed(result['criteria'])
return