summaryrefslogtreecommitdiff
path: root/tests/system/shared/build_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/shared/build_utils.py')
-rw-r--r--tests/system/shared/build_utils.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/system/shared/build_utils.py b/tests/system/shared/build_utils.py
index 3d1cfdaaa9..964cec2458 100644
--- a/tests/system/shared/build_utils.py
+++ b/tests/system/shared/build_utils.py
@@ -43,10 +43,7 @@ def checkLastBuild(expectedToFail=False, createTasksFileOnError=True):
errors = types.count("1")
warnings = types.count("2")
gotErrors = errors != 0
- if not (gotErrors ^ expectedToFail):
- test.passes("Errors: %s | Warnings: %s" % (errors, warnings))
- else:
- test.fail("Errors: %s | Warnings: %s" % (errors, warnings))
+ test.verify(not (gotErrors ^ expectedToFail), "Errors: %s | Warnings: %s" % (errors, warnings))
# additional stuff - could be removed... or improved :)
test.log("Rows inside issues: %d" % model.rowCount())
if gotErrors and createTasksFileOnError: