diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-12-04 11:05:45 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-12-04 11:05:45 +0100 |
commit | bf1b62a34accbc3dad75b50db6f186618ef47f5e (patch) | |
tree | 501bef2d49b5b7ce3b6e7b93e03ef6ef7333d355 /tests | |
parent | 2c5e4b3d3fabbe7f36e4922e0f7171bdcbb41208 (diff) | |
download | nextcloud-server-bf1b62a34accbc3dad75b50db6f186618ef47f5e.tar.gz nextcloud-server-bf1b62a34accbc3dad75b50db6f186618ef47f5e.zip |
PHP < 5.4 is not supported anymore - see #12606
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/appframework/http/DispatcherTest.php | 8 |
1 files changed, 0 insertions, 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'); |