From a13abcf97be2b19804d31ca2d57cc698e3f1b5e6 Mon Sep 17 00:00:00 2001 From: mark_story Date: Wed, 16 Jan 2019 21:53:42 -0500 Subject: [PATCH] Fix tests. --- lib/Cake/Test/Case/Network/Http/HttpSocketTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Test/Case/Network/Http/HttpSocketTest.php b/lib/Cake/Test/Case/Network/Http/HttpSocketTest.php index 8332d82ab4c..3ac6682f9d6 100644 --- a/lib/Cake/Test/Case/Network/Http/HttpSocketTest.php +++ b/lib/Cake/Test/Case/Network/Http/HttpSocketTest.php @@ -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');