Correctly importing classes in DigetAuthentication test

This commit is contained in:
José Lorenzo Rodríguez 2011-02-22 00:04:21 -04:30
parent dbff3b8c58
commit 3e7b85dc34

View file

@ -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 {