From ae6846277ea4be739acfb10ad55189e8211a7882 Mon Sep 17 00:00:00 2001 From: mark_story Date: Sun, 17 Oct 2010 21:29:30 -0400 Subject: [PATCH] Updating text that doesn't make sense as Cake uses PHPunit now. --- cake/console/shells/shell.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cake/console/shells/shell.php b/cake/console/shells/shell.php index 525644f3b1b..75c5d2b61d4 100644 --- a/cake/console/shells/shell.php +++ b/cake/console/shells/shell.php @@ -606,13 +606,13 @@ protected function _checkUnitTest() { if (App::import('vendor', 'simpletest' . DS . 'simpletest')) { return true; } - $prompt = 'SimpleTest is not installed. Do you want to bake unit test files anyway?'; + $prompt = 'PHPUnit is not installed. Do you want to bake unit test files anyway?'; $unitTest = $this->in($prompt, array('y','n'), 'y'); $result = strtolower($unitTest) == 'y' || strtolower($unitTest) == 'yes'; if ($result) { $this->out(); - $this->out('You can download SimpleTest from http://simpletest.org'); + $this->out('You can download PHPUnit from http://phpunit.de'); } return $result; }