From b9d737d3f3fed06fdd1c71f4b3e67e5bf74b7743 Mon Sep 17 00:00:00 2001 From: gggeek Date: Sun, 15 Mar 2015 22:41:15 +0000 Subject: [PATCH] Fix one test failing with php 5.5 fcgi --- tests/LocalhostTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/LocalhostTest.php b/tests/LocalhostTest.php index e35e236..f413d40 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' -- 2.43.0