From: gggeek Date: Sun, 15 Mar 2015 22:41:15 +0000 (+0000) Subject: Fix one test failing with php 5.5 fcgi X-Git-Tag: 4.0.0-alpha^2~172 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=b9d737d3f3fed06fdd1c71f4b3e67e5bf74b7743;p=plcapi.git Fix one test failing with php 5.5 fcgi --- diff --git a/tests/LocalhostTest.php b/tests/LocalhostTest.php index e35e236f..f413d40b 100644 --- a/tests/LocalhostTest.php +++ b/tests/LocalhostTest.php @@ -524,6 +524,10 @@ And turned it into nylon'; if (!in_array($c, array('c2', 'c3', 'c4', 'c5'))) { unset($rcookies[$c]); } + // Seems like we get this when using php-fpm and php 5.5+ ... + if (isset($rcookies[$c]['Max-Age'])) { + unset($rcookies[$c]['Max-Age']); + } } foreach ($cookies as $c => $v) { // format for date string in cookies: 'Mon, 31 Oct 2005 13:50:56 GMT'