From 3e7b85dc3468eccf753d60bda9df4cd01051aa43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=CC=81=20Lorenzo=20Rodri=CC=81guez?= Date: Tue, 22 Feb 2011 00:04:21 -0430 Subject: [PATCH] Correctly importing classes in DigetAuthentication test --- lib/Cake/tests/cases/libs/http/digest_authentication.test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Cake/tests/cases/libs/http/digest_authentication.test.php b/lib/Cake/tests/cases/libs/http/digest_authentication.test.php index 17832ce4534..0b9b6daea33 100644 --- a/lib/Cake/tests/cases/libs/http/digest_authentication.test.php +++ b/lib/Cake/tests/cases/libs/http/digest_authentication.test.php @@ -17,8 +17,8 @@ * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ -App::import('Core', 'HttpSocket'); -App::import('Lib', 'http/DigestAuthentication'); +App::uses('HttpSocket', 'Network/Http'); +App::uses('DigestAuthentication', 'Network/Http'); class DigestHttpSocket extends HttpSocket {