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 f828714 commit 1d37ff1Copy full SHA for 1d37ff1
1 file changed
tests/shared/src/test/scala/org/typelevel/toolkit/ScalaCliProcess.scala
@@ -43,7 +43,7 @@ object ScalaCliProcess {
43
process.stdout.through(fs2.text.utf8.decode).compile.string,
44
process.stderr.through(fs2.text.utf8.decode).compile.string
45
).parFlatMapN {
46
- case (0, _, _) => IO.pure(success)
+ case (0, _, _) => IO.pure(success)
47
case (exitCode, stdout, stdErr) =>
48
val errorMessage: String = List(
49
Option(stdout).filter(_.nonEmpty).map(s => s"[STDOUT]: $s"),
0 commit comments