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]; }