Skip to content

Commit

Permalink
minor #33969 Increase limits for flakey appveyor tests (ostrolucky)
Browse files Browse the repository at this point in the history
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
-------

8a04886 Increase limits for flakey appveyor tests
  • Loading branch information
nicolas-grekas committed Oct 14, 2019
2 parents eb5e01e + 8a04886 commit 6b3bbe4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -72,7 +72,7 @@ public function testNoServer()
$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
Expand Down
Expand Up @@ -669,7 +669,7 @@ public function testDestruct()
$duration = microtime(true) - $start;

$this->assertGreaterThan(1, $duration);
$this->assertLessThan(3, $duration);
$this->assertLessThan(4, $duration);
}

public function testProxy()
Expand Down

0 comments on commit 6b3bbe4

Please sign in to comment.