Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3cbb978

Browse files
committed
[HttpClient] Relax max duration test assertion
1 parent 3498259 commit 3cbb978

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,6 @@ public function testMaxDuration()
795795

796796
$duration = microtime(true) - $start;
797797

798-
$this->assertGreaterThanOrEqual(0.1, $duration);
799-
$this->assertLessThan(0.2, $duration);
798+
$this->assertLessThan(10, $duration);
800799
}
801800
}

0 commit comments

Comments
 (0)