Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jan 17, 2019
1 parent bcbe5fd commit a13abcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Network/Http/HttpSocketTest.php
Expand Up @@ -701,7 +701,7 @@ public function testRequestWithConstructor() {
);
$http = $this->getMock('TestHttpSocket', array('read', 'write', 'connect', 'request'), array($request));

$expected = array('method' => 'GET', 'uri' => '/_test');
$expected = array('method' => 'GET', 'uri' => 'http://localhost:5984/_test');
$http->expects($this->at(0))->method('request')->with($expected);
$http->get('/_test');

Expand Down

0 comments on commit a13abcf

Please sign in to comment.