Skip to content

Commit

Permalink
Merge branch 'branches/rudder/6.2' into branches/rudder/7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins CI committed Aug 20, 2021
2 parents 468d460 + bb4013c commit 24f44e4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class RunNuCommandTest() extends Specification {
val prog =
for {
p <- RunNuCommand.run(Cmd("ls", "-1" :: "/proc/self/fd" :: Nil, Map("PATH" -> PATH)))
c <- p.await.timeout(100.millis).notOptional("oups, timed out")
c <- p.await.timeout(500.millis).notOptional("oups, timed out")
} yield {
(c.code, c.stdout.split("\n").size)
}
Expand All @@ -99,7 +99,7 @@ class RunNuCommandTest() extends Specification {
val prog =
for {
p <- RunNuCommand.run(Cmd("mkdir", "-p" :: file.getPath :: Nil, Map("PATH" -> PATH)))
c <- p.await.timeout(100.millis).notOptional("oups, timed out")
c <- p.await.timeout(500.millis).notOptional("oups, timed out")
} yield {
c.code
}
Expand Down

0 comments on commit 24f44e4

Please sign in to comment.