1
0
Fork 0

Make test more resilient on slow windows CI

pull/10701/head
Jordi Boggiano 2022-04-01 11:27:13 +02:00
parent 17de5f78a3
commit 9a42f69a99
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 2 additions and 1 deletions

View File

@ -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));
}
/**