We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8efeb5c commit 220d5b0Copy full SHA for 220d5b0
tests/shared/src/test/scala/org/typelevel/toolkit/ScalaCliProcess.scala
@@ -75,13 +75,9 @@ object ScalaCliProcess {
75
def command(args: List[String]): IO[Unit] = scalaCli(args)
76
77
def run(body: String): IO[Unit] =
78
- writeToFile(body)(false).use(f =>
79
- scalaCli("run" :: "--native-version" :: "0.4.15" :: f :: Nil)
80
- )
+ writeToFile(body)(false).use(f => scalaCli("run" :: f :: Nil))
81
82
def test(body: String): IO[Unit] =
83
- writeToFile(body)(true).use(f =>
84
- scalaCli("test" :: "--native-version" :: "0.4.15" :: f :: Nil)
85
+ writeToFile(body)(true).use(f => scalaCli("test" :: f :: Nil))
86
87
}
0 commit comments