Add null $index condition to test

This commit is contained in:
sclubricants 2022-10-07 14:41:42 -07:00
parent 6f7c56fff5
commit ad18607f18
No known key found for this signature in database
GPG Key ID: 6150377168802194

View File

@ -620,5 +620,7 @@ final class CLIRequestTest extends CIUnitTestCase
public function testGetCookie()
{
$this->assertNull($this->request->getCookie('TESTY'));
$this->assertSame($this->request->getCookie(), []);
}
}