From 2c95cdb9f89dd4a202464113a277788369663bf5 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 6 Dec 2023 14:35:52 +0100 Subject: [PATCH] fixup! test(integration): ensure group migration works --- tests/integration/features/bootstrap/FeatureContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/features/bootstrap/FeatureContext.php b/tests/integration/features/bootstrap/FeatureContext.php index f75f6675a..f2f434b93 100644 --- a/tests/integration/features/bootstrap/FeatureContext.php +++ b/tests/integration/features/bootstrap/FeatureContext.php @@ -39,7 +39,7 @@ public function __construct() { /** @BeforeScenario */ public function before() { - $jar = new \GuzzleHttp\Cookie\FileCookieJar('/tmp/cookies_' . md5(openssl_random_pseudo_bytes(12))); + $jar = new \GuzzleHttp\Cookie\CookieJar(); $this->client = new \GuzzleHttp\Client([ 'version' => 2.0, 'cookies' => $jar,