Skip to content

Commit

Permalink
fixup! test(integration): ensure group migration works
Browse files Browse the repository at this point in the history
  • Loading branch information
blizzz committed Dec 6, 2023
1 parent e1d3a7d commit 8c5fa9b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration/features/bootstrap/FeatureContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -140,6 +140,7 @@ public function iSendAGetRequestTo($url) {
'GET',
$url,
[
'cookies' => $this->coo
'headers' => [
'Accept' => 'text/html',
],
Expand Down

0 comments on commit 8c5fa9b

Please sign in to comment.