We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e9fea commit 374c590Copy full SHA for 374c590
test/Context/AbstractContextTest.php
@@ -56,13 +56,13 @@ public function testThrowingProcessOnSend(): void
56
$this->expectExceptionMessage('Test message');
57
58
$context = $this->createContext(__DIR__ . "/Fixtures/throwing-process.php");
59
- delay(0.1);
+ delay(1);
60
61
try {
62
$context->send(1);
63
self::fail('Sending should have failed');
64
} catch (ContextException) {
65
- $context->join(new TimeoutCancellation(0.1));
+ $context->join(new TimeoutCancellation(1));
66
}
67
68
0 commit comments