From 85568afd806e36ff9885b52313b32b70c9693ad0 Mon Sep 17 00:00:00 2001 From: MatthewLi Date: Mon, 20 Feb 2017 01:28:24 -0500 Subject: dovetail tool: bugfix for dovetail report and docker build JIRA: DOVETAIL-353 JIRA: DOVETAIL-354 related patch: https://gerrit.opnfv.org/gerrit/#/c/29049/ Change-Id: Ic871abbda62dead7cf5e23e6117c9885d637c7fb Signed-off-by: MatthewLi --- dovetail/report.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dovetail/report.py') 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 -- cgit 1.2.3-korg