Make test more resilient on slow windows CI

main
Jordi Boggiano 2 years ago
parent 17de5f78a3
commit 9a42f69a99
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

@ -128,8 +128,9 @@ class ProcessExecutorTest extends TestCase
$this->assertEquals(1, $process->countActiveJobs());
$promise->cancel();
$this->assertEquals(0, $process->countActiveJobs());
$process->wait();
$end = microtime(true);
$this->assertTrue($end - $start < 0.5, 'Canceling took longer than it should, lasted '.($end - $start));
$this->assertTrue($end - $start < 2, 'Canceling took longer than it should, lasted '.($end - $start));
}
/**

Loading…
Cancel
Save