Skip to content

Commit

Permalink
fix: PHPUnit option resolved_force_ip
Browse files Browse the repository at this point in the history
  • Loading branch information
ddevsr committed Dec 1, 2024
1 parent 83d29d9 commit 83075de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/system/HTTP/CURLRequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,8 @@ public function testForceResolveIPUnknown(): void

$options = $this->request->curl_options;

$this->assertArrayNotHasKey(CURLOPT_IPRESOLVE, $options);
$this->assertArrayHasKey(CURLOPT_IPRESOLVE, $options);
$this->assertSame(\CURL_IPRESOLVE_WHATEVER, $options[CURLOPT_IPRESOLVE]);
}

public function testCookieOption(): void
Expand Down

0 comments on commit 83075de

Please sign in to comment.