10000 [HttpFoundation] Fix transient test · symfony/symfony@6d5dbf7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6d5dbf7

Browse files
[HttpFoundation] Fix transient test
1 parent 12c0153 commit 6d5dbf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpFoundation/Tests/RequestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1676,7 +1676,7 @@ public function testVeryLongHosts($host)
16761676
$request = Request::create('/');
16771677
$request->headers->set('host', $host);
16781678
$this->assertEquals($host, $request->getHost());
1679-
$this->assertLessThan(3, microtime(true) - $start);
1679+
$this->assertLessThan(5, microtime(true) - $start);
16801680
}
16811681

16821682
/**

0 commit comments

Comments
 (0)
0