Skip to content

Commit 57caff3

Browse files
authored
Fix assertArrayNotHasKey usage
1 parent ec3e484 commit 57caff3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/system/HTTP/CURLRequestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ public function testDebugOptionFalse()
471471

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

474-
$this->assertArrayNotHasKey($options[CURLOPT_STDERR]);
474+
$this->assertArrayNotHasKey(CURLOPT_STDERR, $options);
475475
}
476476

477477
public function testDebugOptionFile()

0 commit comments

Comments
 (0)