Don't print ERROR 0, because it confuses IDEA

This commit is contained in:
Pavel Punegov
2020-02-20 16:03:08 +03:00
committed by Pavel Punegov
parent ee169c63c2
commit f2e051e2a2
+1 -1
View File
@@ -267,7 +267,7 @@ task resultsTask() {
"TOTAL: $statistics.total\n" +
"PASSED: $statistics.passed\n" +
"FAILED: $statistics.failed\n" +
"ERROR: $statistics.error\n" +
(statistics.error != 0 ? "ERROR: $statistics.error\n" : "") +
"SKIPPED: $statistics.skipped")
}
}