Fixed CliTest.

This commit is contained in:
Evgeny Gerashchenko
2012-06-20 20:25:18 +04:00
parent 1d16f46211
commit edb293eca9
@@ -64,7 +64,8 @@ public class CliTest {
private void executeCompilerCompareOutput(@NotNull String[] args) {
try {
String actual = normalize(executeCompilerGrabOutput(args))
.replace(new File("compiler/testData/cli/").getAbsolutePath(), "$TESTDATA_DIR$");
.replace(new File("compiler/testData/cli/").getAbsolutePath(), "$TESTDATA_DIR$")
.replace("\\", "/");
String expected = normalize(FileUtil.loadFile(new File("compiler/testData/cli/" + testName.getMethodName() + ".out")));