Skip to content

Commit

Permalink
PHP7.4.5, 7.3.17 のバグでエラーになるためスキップ
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed Apr 22, 2020
1 parent 25bb619 commit 0b25bda
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -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];
}
Expand Down

0 comments on commit 0b25bda

Please sign in to comment.