Skip to content

Commit

Permalink
increase timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
jchyb committed Oct 30, 2024
1 parent 82ff408 commit acc6aed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/test/scala/bloop/bsp/BspCompileSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ class BspCompileSpec(

// Wait until the extra directory is finally deleted at the end of the bsp session
TestUtil.await(
FiniteDuration(10, TimeUnit.SECONDS),
FiniteDuration(20, TimeUnit.SECONDS),
bloop.engine.ExecutionContext.ioScheduler
) {
Task {
Expand All @@ -220,7 +220,7 @@ class BspCompileSpec(
Thread.sleep(100)
}
}.timeoutTo(
FiniteDuration(5, TimeUnit.SECONDS),
FiniteDuration(10, TimeUnit.SECONDS),
Task(sys.error(s"Expected deletion of $orphanClientClassesDir"))
)
}
Expand Down

0 comments on commit acc6aed

Please sign in to comment.