mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Adding fix for Ticket #2736, fixes Core testing broken when libraries are relocated
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5302 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
d733eced60
commit
d15f210546
1 changed files with 3 additions and 3 deletions
|
@ -26,8 +26,8 @@
|
|||
* @lastmodified $Date$
|
||||
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
||||
*/
|
||||
define ('CORE_TEST_CASES', CAKE_CORE_INCLUDE_PATH . DS . 'cake' . DS . 'tests' . DS . 'cases');
|
||||
define ('CORE_TEST_GROUPS', CAKE_CORE_INCLUDE_PATH . DS . 'cake' . DS . 'tests' . DS . 'groups');
|
||||
define ('CORE_TEST_CASES', dirname(dirname(__FILE__)) . DS . 'cases');
|
||||
define ('CORE_TEST_GROUPS', dirname(dirname(__FILE__)) . DS . 'groups');
|
||||
define ('APP_TEST_CASES', APP . 'tests' .DS. 'cases');
|
||||
define ('APP_TEST_GROUPS', APP . 'tests' .DS. 'groups');
|
||||
/**
|
||||
|
@ -365,4 +365,4 @@ class HtmlTestManager extends TestManager {
|
|||
return $buffer;
|
||||
}
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue