Skip to content
This repository was archived by the owner on Jan 16, 2018. It is now read-only.

Commit 88f5fe9

Browse files
committed
Follow naming convention
1 parent 5f0a8b8 commit 88f5fe9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/HttpMethodsClientSpec.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ function it_sends_a_options_request()
7878
$this->options($data['uri'], $data['headers'], $data['body'])->shouldReturn(true);
7979
}
8080

81-
function it_should_send_request_with_underlying_client(HttpClient $client, MessageFactory $messageFactory, RequestInterface $request, ResponseInterface $response)
81+
function it_sends_request_with_underlying_client(HttpClient $client, MessageFactory $messageFactory, RequestInterface $request, ResponseInterface $response)
8282
{
8383
$client->sendRequest($request)->shouldBeCalled()->willReturn($response);
8484

8585
$this->beConstructedWith($client, $messageFactory);
8686
$this->sendRequest($request)->shouldReturn($response);
8787
}
8888

89-
function it_should_send_requests_with_underlying_client(HttpClient $client, MessageFactory $messageFactory, RequestInterface $request1, RequestInterface $request2, BatchResult $batchResult)
89+
function it_sends_requests_with_underlying_client(HttpClient $client, MessageFactory $messageFactory, RequestInterface $request1, RequestInterface $request2, BatchResult $batchResult)
9090
{
9191
$client->sendRequests([$request1, $request2])->shouldBeCalled()->willReturn($batchResult);
9292

0 commit comments

Comments
 (0)