Fixing some package locations and a parse error

This commit is contained in:
José Lorenzo Rodríguez 2011-01-08 22:57:27 -04:30
parent 3c6f85254c
commit 465330a96d
3 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('Dispatcher', 'Routing')
App::uses('Dispatcher', 'Routing');
App::uses('CakeRequest', 'Network');
class CakeRequestTestCase extends CakeTestCase {

View file

@ -17,7 +17,8 @@
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('HttpSocket', 'Network');
App::uses('HttpSocket', 'Network/Http');
App::uses('HttpResponse', 'Network/Http');
/**
* TestAuthentication class

View file

@ -1,4 +1,3 @@
<?php
class TestDriver extends TestSource {
}