We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a7247f commit ff8e8bfCopy full SHA for ff8e8bf
tests/Geocoder/Tests/TestCase.php
@@ -26,7 +26,7 @@ protected function getMockAdapter($expects = null)
26
->expects($this->any())
27
->method('getBody')
28
->will($this->returnValue(
29
- $this->getMock('Psr\Http\Message\StreamableInterface')
+ $this->getMock('Psr\Http\Message\StreamInterface')
30
));
31
32
$adapter = $this->getMock('Ivory\HttpAdapter\HttpAdapterInterface');
@@ -44,7 +44,7 @@ protected function getMockAdapter($expects = null)
44
*/
45
protected function getMockAdapterReturns($returnValue)
46
{
47
- $body = $this->getMock('Psr\Http\Message\StreamableInterface');
+ $body = $this->getMock('Psr\Http\Message\StreamInterface');
48
$body
49
->expects($this->once())
50
->method('__toString')
0 commit comments