From 9f9b36830ab242d633c4741316228d9894dcd295 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Renan=20Gon=C3=A7alves?= Date: Mon, 30 May 2011 21:14:21 +0200 Subject: [PATCH] Fixing the bake_test_app path, so any remaining file will be removed at the end of the test. --- lib/Cake/Test/Case/Console/Command/Task/ProjectTaskTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Test/Case/Console/Command/Task/ProjectTaskTest.php b/lib/Cake/Test/Case/Console/Command/Task/ProjectTaskTest.php index bf130e6c9..e8d85c78e 100644 --- a/lib/Cake/Test/Case/Console/Command/Task/ProjectTaskTest.php +++ b/lib/Cake/Test/Case/Console/Command/Task/ProjectTaskTest.php @@ -115,7 +115,7 @@ class ProjectTaskTest extends CakeTestCase { * @return void */ public function testExecuteWithAbsolutePath() { - $this->Task->args[0] = TMP . 'tests' . DS . 'bake_test'; + $this->Task->args[0] = TMP . 'tests' . DS . 'bake_test_app'; $this->Task->params['skel'] = CAKE . 'Console' . DS . 'templates' . DS . 'skel'; $this->Task->expects($this->at(0))->method('in')->will($this->returnValue('y')); $this->Task->execute();