From 1c25c971e0bb8119a82d5c7da8750c0ae2237cc0 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Thu, 5 Dec 2013 22:09:30 +0400 Subject: [PATCH] Corrected test error message. --- compiler/tests/org/jetbrains/jet/JetTestUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests/org/jetbrains/jet/JetTestUtils.java b/compiler/tests/org/jetbrains/jet/JetTestUtils.java index 20b95ffa301..130a33ccc6c 100644 --- a/compiler/tests/org/jetbrains/jet/JetTestUtils.java +++ b/compiler/tests/org/jetbrains/jet/JetTestUtils.java @@ -390,7 +390,7 @@ public class JetTestUtils { String expectedText = StringUtil.convertLineSeparators(expected.trim()); String actualText = StringUtil.convertLineSeparators(actual.trim()); if (!Comparing.equal(expectedText, actualText)) { - throw new FileComparisonFailure("Expected and actual namespaces differ from " + expectedFile.getName(), + throw new FileComparisonFailure("Actual data differs from file content: " + expectedFile.getName(), expected, actual, expectedFile.getAbsolutePath()); } }