1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-22 22:11:11 +01:00

Allow more time for kill

This commit is contained in:
Aaron Piotrowski 2017-04-24 10:47:53 -05:00
parent c9be318356
commit c753d1bf6e

View File

@ -39,7 +39,7 @@ abstract class AbstractContextTest extends TestCase {
$context->start();
$this->assertRunTimeLessThan([$context, 'kill'], 250);
$this->assertRunTimeLessThan([$context, 'kill'], 1000);
$this->assertFalse($context->isRunning());
}