From 0b25bdae045a86600d3ac18aed41871e07991eaf Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Wed, 22 Apr 2020 16:29:48 +0900 Subject: [PATCH] =?UTF-8?q?PHP7.4.5,=207.3.17=20=E3=81=AE=E3=83=90?= =?UTF-8?q?=E3=82=B0=E3=81=A7=E3=82=A8=E3=83=A9=E3=83=BC=E3=81=AB=E3=81=AA?= =?UTF-8?q?=E3=82=8B=E3=81=9F=E3=82=81=E3=82=B9=E3=82=AD=E3=83=83=E3=83=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - see https://github.com/symfony/symfony/pull/36485#issuecomment-615928699 --- .../Handler/SameSiteNoneCompatSessionHandlerTest.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/Eccube/Tests/Session/Storage/Handler/SameSiteNoneCompatSessionHandlerTest.php b/tests/Eccube/Tests/Session/Storage/Handler/SameSiteNoneCompatSessionHandlerTest.php index 6f6cb120f35..bbbb5e76c5b 100644 --- a/tests/Eccube/Tests/Session/Storage/Handler/SameSiteNoneCompatSessionHandlerTest.php +++ b/tests/Eccube/Tests/Session/Storage/Handler/SameSiteNoneCompatSessionHandlerTest.php @@ -101,6 +101,12 @@ public function provideSession() // TODO Mock が動作しないためスキップ continue; } + if ($name == 'regenerate') { + // XXX PHP7.4.5, 7.3.17 のバグでエラーになるためスキップ + // see https://github.com/symfony/symfony/pull/36485#issuecomment-615928699 + if (PHP_VERSION_ID === 70405) continue; + if (PHP_VERSION_ID === 70317) continue; + } foreach ($userAgents as $user_agent => $shouldSendSameSiteNone) { yield [$name, $user_agent, $shouldSendSameSiteNone]; }