Skip to content

Commit e8b1d1e

Browse files
committed
Fix arguments
1 parent 28c877f commit e8b1d1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/test/dotty/tools/scripting/BashExitCodeTests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class BashExitCodeTests:
3636
def scala(args: String*) = verifyExit(scalaPath, ("--power" +: args :+ "--offline" :+ "--server=false")*)
3737
def scalacRaw(args: String*) = verifyExit(scalacPath, args*)
3838
def scalac(args: String*) = scalacRaw(("-d" +: tmpDir +: args)*)
39-
def repl(args: String*) = verifyExit(scalaPath, "--power", "repl", "--offline", "--", args*)
39+
def repl(args: String*) = verifyExit(scalaPath, ("--power" +: "repl" +: "--offline" +: "--" +: args)*)
4040

4141
/** The path to the test file for this class. */
4242
def f(body: String, suffix: String = ".scala"): String =

0 commit comments

Comments
 (0)