Skip to content

Commit

Permalink
Fixing App tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed May 15, 2011
1 parent a6fb16b commit 29298d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Test/Case/Core/AppTest.php
Expand Up @@ -334,11 +334,11 @@ function testListObjectsInPlugin() {

$result = App::objects('TestPlugin.helper');
sort($result);
$expected = array('OtherHelperHelper', 'PluggedHelper', 'TestPluginApp');
$expected = array('OtherHelperHelper', 'PluggedHelperHelper', 'TestPluginAppHelper');
$this->assertEquals($result, $expected);
$result = App::objects('TestPlugin.View/Helper');
sort($result);
$expected = array('OtherHelperHelper', 'PluggedHelper', 'TestPluginApp');
$expected = array('OtherHelperHelper', 'PluggedHelperHelper', 'TestPluginAppHelper');
$this->assertEquals($result, $expected);

$result = App::objects('TestPlugin.component');
Expand Down

0 comments on commit 29298d7

Please sign in to comment.