From d6df227344a325ca67d19c0b4e55a1dcddcc3230 Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Tue, 11 Sep 2012 21:13:22 +0400 Subject: [PATCH] Fixing tests This solution is in fact rather hackish, but the only way I see to fix it is to restructure the process of configuring test class paths altogether --- .../test/org/jetbrains/k2js/test/semantics/JsUnitTestBase.java | 1 + 1 file changed, 1 insertion(+) diff --git a/js/js.tests/test/org/jetbrains/k2js/test/semantics/JsUnitTestBase.java b/js/js.tests/test/org/jetbrains/k2js/test/semantics/JsUnitTestBase.java index 0807cecf927..7a59ad2a5da 100644 --- a/js/js.tests/test/org/jetbrains/k2js/test/semantics/JsUnitTestBase.java +++ b/js/js.tests/test/org/jetbrains/k2js/test/semantics/JsUnitTestBase.java @@ -71,6 +71,7 @@ public abstract class JsUnitTestBase extends MultipleFilesTranslationTest { boolean removed = additionalLibraryFiles.remove(Config.LIBRARIES_LOCATION + "/stdlib/testCode.kt"); assert removed; result.addAll(additionalLibraryFiles); + result.add(Config.LIBRARIES_LOCATION + "/stdlib/TuplesCode.kt"); return result; }