From 78c3fcc1600cf8693073155a3ac77a785de0e91d Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Wed, 6 Apr 2016 17:46:39 +0200 Subject: Squish: Small cleanup Change-Id: I8ca788b28612568935dcf68bc57089c0a0174fb1 Reviewed-by: Christian Stenger --- tests/system/shared/build_utils.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'tests/system/shared/build_utils.py') 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: -- cgit v1.2.1