From 6ea2526af85487b69d115782e57680aba5d26e89 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Thu, 1 Dec 2016 17:36:01 +0300 Subject: [PATCH] Fix multiplatform tests on Windows --- .../multiplatform/AbstractMultiPlatformIntegrationTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests/org/jetbrains/kotlin/multiplatform/AbstractMultiPlatformIntegrationTest.kt b/compiler/tests/org/jetbrains/kotlin/multiplatform/AbstractMultiPlatformIntegrationTest.kt index 461ce95370a..44d2acf46fa 100644 --- a/compiler/tests/org/jetbrains/kotlin/multiplatform/AbstractMultiPlatformIntegrationTest.kt +++ b/compiler/tests/org/jetbrains/kotlin/multiplatform/AbstractMultiPlatformIntegrationTest.kt @@ -71,6 +71,6 @@ abstract class AbstractMultiPlatformIntegrationTest : KtUsefulTestCase() { } } - KotlinTestUtils.assertEqualsToFile(File(root, "output.txt"), result) + KotlinTestUtils.assertEqualsToFile(File(root, "output.txt"), result.replace('\\', '/')) } }