mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 11:06:15 +00:00
case fixes
This commit is contained in:
parent
e7c8dd1616
commit
6695994cc2
1 changed files with 2 additions and 2 deletions
|
@ -197,8 +197,8 @@ class ThemeViewTest extends CakeTestCase {
|
|||
$result = $ThemeView->getLayoutFileName();
|
||||
$this->assertEqual($expected, $result);
|
||||
|
||||
$ThemeView->layoutPath = 'emails' . DS . 'html';
|
||||
$expected = CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS . 'Layouts' . DS . 'emails' . DS . 'html' . DS . 'default.ctp';
|
||||
$ThemeView->layoutPath = 'Emails' . DS . 'html';
|
||||
$expected = CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS . 'Layouts' . DS . 'Emails' . DS . 'html' . DS . 'default.ctp';
|
||||
$result = $ThemeView->getLayoutFileName();
|
||||
$this->assertEqual($expected, $result);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue