From bf1b62a34accbc3dad75b50db6f186618ef47f5e Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 4 Dec 2014 11:05:45 +0100 Subject: [PATCH] PHP < 5.4 is not supported anymore - see #12606 --- tests/lib/appframework/http/DispatcherTest.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/lib/appframework/http/DispatcherTest.php b/tests/lib/appframework/http/DispatcherTest.php index 839d4f02a40..3933e00804b 100644 --- a/tests/lib/appframework/http/DispatcherTest.php +++ b/tests/lib/appframework/http/DispatcherTest.php @@ -232,10 +232,6 @@ class DispatcherTest extends \Test\TestCase { public function testExceptionCallsAfterException() { - // TODO fails on PHP 5.3 - if (version_compare(PHP_VERSION, '5.4.0', '<')) { - $this->markTestSkipped('Fails on PHP 5.3'); - } $out = 'yo'; $httpHeaders = 'Http'; $responseHeaders = array('hell' => 'yeah'); @@ -251,10 +247,6 @@ class DispatcherTest extends \Test\TestCase { public function testExceptionThrowsIfCanNotBeHandledByAfterException() { - // TODO fails on PHP 5.3 - if (version_compare(PHP_VERSION, '5.4.0', '<')) { - $this->markTestSkipped('Fails on PHP 5.3 and causes infinite loop'); - } $out = 'yo'; $httpHeaders = 'Http'; $responseHeaders = array('hell' => 'yeah'); -- 2.39.5