From d1b06b7ebbde90d1c2359f8c155d79ca0168d659 Mon Sep 17 00:00:00 2001 From: Adam Lundrigan Date: Sat, 15 Nov 2014 19:08:31 -0330 Subject: [PATCH] CS fixes for #6575 --- tests/ZendTest/Cache/Storage/Adapter/CommonAdapterTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/ZendTest/Cache/Storage/Adapter/CommonAdapterTest.php b/tests/ZendTest/Cache/Storage/Adapter/CommonAdapterTest.php index b8fcf7d3a60..c2e30fd2c54 100644 --- a/tests/ZendTest/Cache/Storage/Adapter/CommonAdapterTest.php +++ b/tests/ZendTest/Cache/Storage/Adapter/CommonAdapterTest.php @@ -619,12 +619,10 @@ public function testSetAndGetExpiredItems() $rs = $this->_storage->getItems(array_keys($items)); ksort($rs); // make comparable $this->assertEquals($items, $rs); - } elseif ($capabilities->getUseRequestTime()) { // if the request time will be used as current time all items will // be available as expiration doesn't work within the same process $this->assertEquals($items, $rs); - } else { $this->assertEquals($itemsHigh, $rs); }