Increase limits for flakey appveyor tests

This commit is contained in:
Gabriel Ostrolucký 2019-10-13 14:02:04 +02:00
parent 6f54733a9c
commit 8a04886f26
No known key found for this signature in database
GPG Key ID: 0B618B95BA22CEEF
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ DUMP
$connection = new Connection(self::VAR_DUMPER_SERVER);
$start = microtime(true);
$this->assertFalse($connection->write($data));
$this->assertLessThan(1, microtime(true) - $start);
$this->assertLessThan(4, microtime(true) - $start);
}
private function getServerProcess(): Process

View File

@ -669,7 +669,7 @@ abstract class HttpClientTestCase extends TestCase
$duration = microtime(true) - $start;
$this->assertGreaterThan(1, $duration);
$this->assertLessThan(3, $duration);
$this->assertLessThan(4, $duration);
}
public function testProxy()