mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Applying patch from 'rafaelbandeira3'. Removes redundant DS in path. Fixes #5902
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7946 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
0e458ff30b
commit
a88aeef826
1 changed files with 1 additions and 1 deletions
|
@ -686,7 +686,7 @@ class CakeTestCase extends UnitTestCase {
|
|||
if (strpos($fixture, 'core.') === 0) {
|
||||
$fixture = substr($fixture, strlen('core.'));
|
||||
foreach (Configure::corePaths('cake') as $key => $path) {
|
||||
$fixturePaths[] = $path . DS . 'tests' . DS . 'fixtures';
|
||||
$fixturePaths[] = $path . 'tests' . DS . 'fixtures';
|
||||
}
|
||||
} elseif (strpos($fixture, 'app.') === 0) {
|
||||
$fixture = substr($fixture, strlen('app.'));
|
||||
|
|
Loading…
Reference in a new issue