From 1014806c7b93dee7c63f1892d6b6f8858e274ac3 Mon Sep 17 00:00:00 2001 From: Jose Lorenzo Rodriguez Date: Thu, 21 Apr 2011 13:28:49 -0430 Subject: [PATCH] Colorful error if not PHPUnit is found --- lib/Cake/Console/Command/TestsuiteShell.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Console/Command/TestsuiteShell.php b/lib/Cake/Console/Command/TestsuiteShell.php index fc1e5c262..c55169cd2 100644 --- a/lib/Cake/Console/Command/TestsuiteShell.php +++ b/lib/Cake/Console/Command/TestsuiteShell.php @@ -165,7 +165,7 @@ class TestsuiteShell extends Shell { $this->_dispatcher = new CakeTestSuiteDispatcher(); $sucess = $this->_dispatcher->loadTestFramework(); if (!$sucess) { - throw new Exception(__d('cake_dev', 'Please install PHPUnit framework (http://www.phpunit.de)')); + throw new Exception(__d('cake_dev', 'Please install PHPUnit framework (http://www.phpunit.de)')); } }