8000 Merge branch '2.3' · helmer/symfony@89b42ba · GitHub 8000
[go: up one dir, main page]

Skip to content

Commit 89b42ba

Browse files
committed
Merge branch '2.3'
* 2.3: [HttpKernel] Added a missing use statement. [Process] Increased the timeout in a test to prevent random failures when travis is under a heavy load.
2 parents 80d4d5b + fbb78ec commit 89b42ba

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Symfony/Component/HttpKernel/Fragment/FragmentHandler.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
namespace Symfony\Component\HttpKernel\Fragment;
1313

14+
use Symfony\Component\HttpFoundation\Request;
1415
use Symfony\Component\HttpFoundation\Response;
1516
use Symfony\Component\HttpFoundation\StreamedResponse;
1617
use Symfony\Component\HttpKernel\Controller\ControllerReference;

src/Symfony/Component/Process/Tests/AbstractProcessTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function testStopWithTimeoutIsActuallyWorking()
6262
}
6363
$duration = microtime(true) - $start;
6464

65-
$this->assertLessThan(1.3, $duration);
65+
$this->assertLessThan(1.8, $duration);
6666
}
6767

6868
/**

0 commit comments

Comments
 (0)
0