From 26995864725b1f12a23d4064b4edb9ba3b0dbc10 Mon Sep 17 00:00:00 2001 From: Jose Lorenzo Rodriguez Date: Sun, 16 Jun 2013 01:00:27 +0200 Subject: [PATCH] Fixied failing test --- lib/Cake/Test/TestCase/Console/Command/TestShellTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Test/TestCase/Console/Command/TestShellTest.php b/lib/Cake/Test/TestCase/Console/Command/TestShellTest.php index eea615138b5..f6e74b25cc3 100644 --- a/lib/Cake/Test/TestCase/Console/Command/TestShellTest.php +++ b/lib/Cake/Test/TestCase/Console/Command/TestShellTest.php @@ -324,7 +324,7 @@ public function testAvailableCoreCategory() { $this->Shell->expects($this->once())->method('_run'); $this->Shell->available(); - $this->assertEquals(array('core', 'AllBehaviors'), $this->Shell->args); + $this->assertEquals(array('core', 'Basics'), $this->Shell->args); } /**