File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
java/client/src/test/java/org/signal/libsignal/internal Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ class AsyncTests {
117
117
val resultFuture = baseFuture.toResultFuture()
118
118
assertTrue(resultFuture.cancel(true ), " resultFuture should be cancellable" )
119
119
120
- val throwable = assertFailsWith<CancellationException > { withTimeout(200 .milliseconds) { baseFuture.await() } }
120
+ val throwable = assertFailsWith<CancellationException > { withTimeout(1000 .milliseconds) { baseFuture.await() } }
121
121
assertTrue(throwable !is TimeoutCancellationException , " Timed out awaiting baseFuture cancellation" )
122
122
// We have to wait for the future cancellation to bubble up from the native code before we can check these.
123
123
assertTrue(baseFuture.isCancelled, " baseFuture should be cancelled" )
You can’t perform that action at this time.
0 commit comments