From 3f506b287b8380e1de293df1a58614598f2027ca Mon Sep 17 00:00:00 2001 From: mark_story Date: Sun, 13 Nov 2011 16:48:52 -0500 Subject: [PATCH] Rename file. Fix build error caused by legacy workaround fixes. --- lib/Cake/Test/Case/Console/TaskCollectionTest.php | 2 +- .../Console/Command/Task/{other_task.php => OtherTaskTask.php} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Command/Task/{other_task.php => OtherTaskTask.php} (100%) diff --git a/lib/Cake/Test/Case/Console/TaskCollectionTest.php b/lib/Cake/Test/Case/Console/TaskCollectionTest.php index 75b7908ee..3648fb2b4 100644 --- a/lib/Cake/Test/Case/Console/TaskCollectionTest.php +++ b/lib/Cake/Test/Case/Console/TaskCollectionTest.php @@ -88,7 +88,7 @@ class TaskCollectionTest extends CakeTestCase { $dispatcher = $this->getMock('ShellDispatcher', array(), array(), '', false); $shell = $this->getMock('Shell', array(), array(), '', false); App::build(array( - 'plugins' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS) + 'Plugin' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS) )); CakePlugin::load('TestPlugin'); $this->Tasks = new TaskCollection($shell, $dispatcher); diff --git a/lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Command/Task/other_task.php b/lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Command/Task/OtherTaskTask.php similarity index 100% rename from lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Command/Task/other_task.php rename to lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Command/Task/OtherTaskTask.php