Skip to content

Commit

Permalink
Fixing some package locations and a parse error
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Jan 9, 2011
1 parent 3c6f852 commit 465330a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Cake/tests/cases/libs/cake_request.test.php
Expand Up @@ -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 {
Expand Down
3 changes: 2 additions & 1 deletion lib/Cake/tests/cases/libs/http_socket.test.php
Expand Up @@ -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
Expand Down
@@ -1,4 +1,3 @@
<?php

class TestDriver extends TestSource {
}

0 comments on commit 465330a

Please sign in to comment.