Skip to content

Commit

Permalink
try to fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
counter2015 committed Nov 26, 2024
1 parent 3914111 commit 8b72ec1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions os/test/src-jvm/SpawningSubprocessesNewTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ object SpawningSubprocessesNewTests extends TestSuite {
stdout =
os.ProcessOutput((buf, len) => lineCount += buf.slice(0, len).count(_ == '\n'))
)
lineCount ==> 22
lineCount ==> 24
}
}
test - prep { wd =>
Expand All @@ -97,7 +97,7 @@ object SpawningSubprocessesNewTests extends TestSuite {
cwd = wd,
stdout = os.ProcessOutput.Readlines(line => lineCount += 1)
)
lineCount ==> 22
lineCount ==> 24
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions os/test/src-jvm/SpawningSubprocessesTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ object SpawningSubprocessesTests extends TestSuite {
stdout =
os.ProcessOutput((buf, len) => lineCount += buf.slice(0, len).count(_ == '\n'))
)
lineCount ==> 22
lineCount ==> 24
}
}
test - prep { wd =>
Expand All @@ -92,7 +92,7 @@ object SpawningSubprocessesTests extends TestSuite {
cwd = wd,
stdout = os.ProcessOutput.Readlines(line => lineCount += 1)
)
lineCount ==> 22
lineCount ==> 24
}
}
}
Expand Down

0 comments on commit 8b72ec1

Please sign in to comment.