Skip to content

Commit 1d37ff1

Browse files
committed
Format files before PR
1 parent f828714 commit 1d37ff1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ object ScalaCliProcess {
4343
process.stdout.through(fs2.text.utf8.decode).compile.string,
4444
process.stderr.through(fs2.text.utf8.decode).compile.string
4545
).parFlatMapN {
46-
case (0, _, _) => IO.pure(success)
46+
case (0, _, _) => IO.pure(success)
4747
case (exitCode, stdout, stdErr) =>
4848
val errorMessage: String = List(
4949
Option(stdout).filter(_.nonEmpty).map(s => s"[STDOUT]: $s"),

0 commit comments

Comments
 (0)