Skip to content

Commit ba73386

Browse files
committed
[HttpClient] Relax max duration test assertion
1 parent b803d46 commit ba73386

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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)