Skip to content

Commit

Permalink
Increase other timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
durban committed Jan 31, 2024
1 parent e8ca054 commit 9aa790a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ class SupervisorSpec extends BaseSpec with DetectPlatform {
}

// if this doesn't work properly, the test will hang
test.start.flatMap(_.join).as(ok).timeoutTo(3.seconds, IO(false must beTrue))
test.start.flatMap(_.join).as(ok).timeoutTo(4.seconds, IO(false must beTrue))
}

"cancel inner fiber and ignore restart if outer errored" in real {
Expand All @@ -229,7 +229,7 @@ class SupervisorSpec extends BaseSpec with DetectPlatform {
}

// if this doesn't work properly, the test will hang
test.start.flatMap(_.join).as(ok).timeoutTo(3.seconds, IO(false must beTrue))
test.start.flatMap(_.join).as(ok).timeoutTo(4.seconds, IO(false must beTrue))
}

"supervise / finalize race" in real {
Expand Down

0 comments on commit 9aa790a

Please sign in to comment.