From e47b26aa6b230fb992c4408ad2cf3c07a6170c20 Mon Sep 17 00:00:00 2001 From: Richard van den Berg Date: Tue, 15 Dec 2015 16:58:12 +0100 Subject: [PATCH] Do not redefine TestHttpSocket --- lib/Cake/Test/Case/Network/Http/BasicAuthenticationTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Cake/Test/Case/Network/Http/BasicAuthenticationTest.php b/lib/Cake/Test/Case/Network/Http/BasicAuthenticationTest.php index b3e345d9ffc..741f1621b2e 100644 --- a/lib/Cake/Test/Case/Network/Http/BasicAuthenticationTest.php +++ b/lib/Cake/Test/Case/Network/Http/BasicAuthenticationTest.php @@ -20,11 +20,11 @@ App::uses('BasicAuthentication', 'Network/Http'); /** - * class TestHttpSocket + * class TestSslHttpSocket * * @package Cake.Test.Case.Network.Http */ -class TestHttpSocket extends HttpSocket { +class TestSslHttpSocket extends HttpSocket { /** * testSetProxy method @@ -84,7 +84,7 @@ public function testProxyAuthentication() { * @return void */ public function testProxyAuthenticationSsl() { - $http = new TestHttpSocket(); + $http = new TestSslHttpSocket(); $http->request['uri']['scheme'] = 'https'; $proxy = array( 'host' => 'localhost',