diff --git a/backend.native/tests/build.gradle b/backend.native/tests/build.gradle index 5cfbc482ba9..c4631b55bba 100644 --- a/backend.native/tests/build.gradle +++ b/backend.native/tests/build.gradle @@ -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") } }