correcting test to use DS rather than / seperator

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7721 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
AD7six 2008-10-09 17:42:10 +00:00
parent ad059df35d
commit 488f1f41ee

View file

@ -459,7 +459,7 @@ class Shell extends Object {
* @access protected
*/
function _checkUnitTest() {
if (App::import('vendor', 'simpletest/simpletest')) {
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');