Skip to content

Commit

Permalink
Update ClientTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Mar 31, 2024
1 parent 2eeb8c1 commit 8ead21b
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions tests/ClientTest.php
Expand Up @@ -26,15 +26,6 @@ public function testUsesDefaultHandler()
self::assertSame(200, $response->getStatusCode());
}

public function testValidatesArgsForMagicMethods()
{
$client = new Client();

$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionMessage('Magic request methods require a URI and optional options array');
$client->options();
}

public function testCanSendAsyncGetRequests()
{
$client = new Client();
Expand Down

0 comments on commit 8ead21b

Please sign in to comment.