From 23332bac1391349b960a56e4d35d93e11c509015 Mon Sep 17 00:00:00 2001 From: Shagen Ogandzhanian Date: Mon, 18 Jan 2021 12:51:23 +0100 Subject: [PATCH] More precise message for "this test can be unmuted" --- .../tests/org/jetbrains/kotlin/test/KotlinTestUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests-common/tests/org/jetbrains/kotlin/test/KotlinTestUtils.java b/compiler/tests-common/tests/org/jetbrains/kotlin/test/KotlinTestUtils.java index aa821066581..7f1914cd3d0 100644 --- a/compiler/tests-common/tests/org/jetbrains/kotlin/test/KotlinTestUtils.java +++ b/compiler/tests-common/tests/org/jetbrains/kotlin/test/KotlinTestUtils.java @@ -621,7 +621,7 @@ public class KotlinTestUtils { } } - throw new AssertionError("Looks like this test can be unmuted. Remove IGNORE_BACKEND directive."); + throw new AssertionError(String.format("Looks like this test can be unmuted. Remove \"%s%s\" directive.", ignoreDirective, targetBackend)); } }; }