diff --git a/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/forTestCompile/ForTestCompileRuntime.java b/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/forTestCompile/ForTestCompileRuntime.java index f65b1c18449..70af2ca8d50 100644 --- a/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/forTestCompile/ForTestCompileRuntime.java +++ b/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/forTestCompile/ForTestCompileRuntime.java @@ -98,7 +98,7 @@ public class ForTestCompileRuntime { @NotNull private static File assertExists(@NotNull File file) { if (!file.exists()) { - throw new IllegalStateException(file + " does not exist. Run 'ant dist'"); + throw new IllegalStateException(file + " does not exist. Run 'gradlew dist'"); } return file; }