Skip to content

Commit

Permalink
Increase Relay tests timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubuid committed Jul 25, 2024
1 parent a715583 commit d62bdc3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class RelayTest {
runBlocking {
val start = System.currentTimeMillis()
// Await test finish or check if timeout occurred
while (testState.value is TestState.Idle && !didTimeout(start, 20000L)) {
while (testState.value is TestState.Idle && !didTimeout(start, 60000L)) {
delay(10)
}

Expand Down Expand Up @@ -138,7 +138,7 @@ class RelayTest {
runBlocking {
val start = System.currentTimeMillis()
// Await test finish or check if timeout occurred
while (testState.value is TestState.Idle && !didTimeout(start, 10000L)) {
while (testState.value is TestState.Idle && !didTimeout(start, 60000L)) {
delay(10)
}

Expand Down

0 comments on commit d62bdc3

Please sign in to comment.