path correction

This commit is contained in:
AD7six 2011-05-18 01:00:00 +02:00
parent 6e29bb4d94
commit b1d891bb49

View file

@ -116,13 +116,13 @@ class CakeFixtureManager {
$pluginName = $parts[1];
$fixture = $parts[2];
$fixturePaths = array(
App::pluginPath($pluginName) . 'tests' . DS . 'Fixture',
App::pluginPath($pluginName) . 'Test' . DS . 'Fixture',
TESTS . 'Fixture'
);
} else {
$fixturePaths = array(
TESTS . 'Fixture',
CAKE . 'tests' . DS . 'Fixture'
CAKE . 'Test' . DS . 'Fixture'
);
}