From 1654c3f339d8534c0ec2a72af18caf849326c00c Mon Sep 17 00:00:00 2001 From: mark_story Date: Wed, 4 Mar 2009 01:17:44 +0000 Subject: [PATCH] Updating links to SimpleTest in Shell. Fixes #6162 git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@8073 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/console/libs/shell.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cake/console/libs/shell.php b/cake/console/libs/shell.php index 9aaf6eae62a..04e444d2daa 100644 --- a/cake/console/libs/shell.php +++ b/cake/console/libs/shell.php @@ -471,11 +471,11 @@ function _checkUnitTest() { if (App::import('vendor', 'simpletest' . DS . 'simpletest')) { return true; } - $unitTest = $this->in('Cake test suite not installed. Do you want to bake unit test files anyway?', array('y','n'), 'y'); + $unitTest = $this->in('SimpleTest is not installed. Do you want to bake unit test files anyway?', array('y','n'), 'y'); $result = low($unitTest) == 'y' || low($unitTest) == 'yes'; if ($result) { - $this->out("\nYou can download the Cake test suite from http://cakeforge.org/projects/testsuite/", true); + $this->out("\nYou can download SimpleTest from http://simpletest.org", true); } return $result; }