Skip to content

Commit 374c590

Browse files
committed
Increase delay also for testThrowingProcessOnSend
1 parent 83e9fea commit 374c590

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Context/AbstractContextTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ public function testThrowingProcessOnSend(): void
5656
$this->expectExceptionMessage('Test message');
5757

5858
$context = $this->createContext(__DIR__ . "/Fixtures/throwing-process.php");
59-
delay(0.1);
59+
delay(1);
6060

6161
try {
6262
$context->send(1);
6363
self::fail('Sending should have failed');
6464
} catch (ContextException) {
65-
$context->join(new TimeoutCancellation(0.1));
65+
$context->join(new TimeoutCancellation(1));
6666
}
6767
}
6868

0 commit comments

Comments
 (0)