8000 minor #33969 Increase limits for flakey appveyor tests (ostrolucky) · symfony/symfony@6b3bbe4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6b3bbe4

Browse files
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 ------- 8a04886 Increase limits for flakey appveyor tests
2 parents eb5e01e + 8a04886 commit 6b3bbe4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/VarDumper/Tests/Server/ConnectionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function testNoServer()
7272
$connection = new Connection(self::VAR_DUMPER_SERVER);
7373
$start = microtime(true);
7474
$this->assertFalse($connection->write($data));
75-
$this->assertLessThan(1, microtime(true) - $start);
75+
$this->assertLessThan(4, microtime(true) - $start);
7676
}
7777

7878
private function getServerProcess(): Process

src/Symfony/Contracts/HttpClient/Test/HttpClientTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ public function testDestruct()
669669
$duration = microtime(true) - $start;
670670

671671
$this->assertGreaterThan(1, $duration);
672-
$this->assertLessThan(3, $duration);
672+
$this->assertLessThan(4, $duration);
673673
}
674674

675675
public function testProxy()

0 commit comments

Comments
 (0)
0