delete useless test

This commit is contained in:
John Paul E. Balandan, CPA 2024-11-30 23:08:00 +08:00
parent 02e75eb6dd
commit 9bbe30f5be
No known key found for this signature in database
GPG Key ID: 697D84680E3738DA

View File

@ -163,17 +163,6 @@ class CURLRequestTest extends CIUnitTestCase
$this->assertSame('http://www.foo.com/api/v1/', $request->getBaseURI()->__toString());
}
public function testOptionsBaseURIOverride(): void
{
$options = [
'baseURI' => 'http://www.foo.com/api/v1/',
'baseURI' => 'http://bogus/com',
];
$request = $this->getRequest($options);
$this->assertSame('http://bogus/com', $request->getBaseURI()->__toString());
}
public function testOptionsHeaders(): void
{
$options = [