minor #33969 Increase limits for flakey appveyor tests (ostrolucky)

This PR was merged into the 4.3 branch.

Discussion
----------

Increase limits for flakey appveyor tests

| Q             | A
| ------------- | ---
| Branch?       | 4.3
| Bug fix?      | no
| New feature?  | no
| Deprecations? | no
| Tickets       |
| License       | MIT
| Doc PR        |

See https://ci.appveyor.com/project/fabpot/symfony/builds/28063471 and https://ci.appveyor.com/project/fabpot/symfony/builds/27945625

Commits
-------

8a04886f26 Increase limits for flakey appveyor tests
This commit is contained in:
Nicolas Grekas 2019-10-14 15:09:55 +02:00
commit 6b3bbe4cc2
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()