From 0e21dd15ba08b51d655559ee3a71ba54dc1ffc6a Mon Sep 17 00:00:00 2001 From: Roman Artemev Date: Thu, 14 May 2020 13:22:10 +0300 Subject: [PATCH] [JS SCRIPT] Fix script test data --- .../org/jetbrains/kotlin/scripting/repl/js/test/ReplTest.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/scripting/js-test/test/org/jetbrains/kotlin/scripting/repl/js/test/ReplTest.kt b/libraries/scripting/js-test/test/org/jetbrains/kotlin/scripting/repl/js/test/ReplTest.kt index d523de80c17..60d5bbf5d11 100644 --- a/libraries/scripting/js-test/test/org/jetbrains/kotlin/scripting/repl/js/test/ReplTest.kt +++ b/libraries/scripting/js-test/test/org/jetbrains/kotlin/scripting/repl/js/test/ReplTest.kt @@ -80,9 +80,9 @@ abstract class AbstractReplTestRunner : TestCase() { if (b != Unit) return "fail2: ${'$'}b" return "OK" - }, - box() - """ + } + """, + "box()" ) Assert.assertEquals("OK", compileAndEval(lines)) }