Skip to content

Commit 220d5b0

Browse files
committed
Fixing version declaration in tests
1 parent 8efeb5c commit 220d5b0

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tests/shared/src/test/scala/org/typelevel/toolkit/ScalaCliProcess.scala

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,9 @@ object ScalaCliProcess {
7575
def command(args: List[String]): IO[Unit] = scalaCli(args)
7676

7777
def run(body: String): IO[Unit] =
78-
writeToFile(body)(false).use(f =>
79-
scalaCli("run" :: "--native-version" :: "0.4.15" :: f :: Nil)
80-
)
78+
writeToFile(body)(false).use(f => scalaCli("run" :: f :: Nil))
8179

8280
def test(body: String): IO[Unit] =
83-
writeToFile(body)(true).use(f =>
84-
scalaCli("test" :: "--native-version" :: "0.4.15" :: f :: Nil)
85-
)
81+
writeToFile(body)(true).use(f => scalaCli("test" :: f :: Nil))
8682

8783
}

0 commit comments

Comments
 (0)