Skip to content

Commit

Permalink
don't import os.* instead use directly
Browse files Browse the repository at this point in the history
  • Loading branch information
kasiaMarek committed Jul 1, 2024
1 parent c33a056 commit 0ae252d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package scala.cli.integration

import com.eed3si9n.expecty.Expecty.expect
import os.Pipe

import scala.cli.integration.util.BloopUtil
import scala.concurrent.ExecutionContext
Expand Down Expand Up @@ -230,7 +229,7 @@ class BloopTests extends ScalaCliSuite {

inputs.fromRoot { root =>
val res =
runScalaCli(("compile" :: "." :: options)*).call(root, check = false, stderr = Pipe)
runScalaCli(("compile" :: "." :: options)*).call(root, check = false, stderr = os.Pipe)
assert(res.exitCode == 1)

val compilationError = res.err.text()
Expand Down

0 comments on commit 0ae252d

Please sign in to comment.