From 6695994cc2238e4c1ba5f9ae04c720b4a1e29e9d Mon Sep 17 00:00:00 2001 From: AD7six Date: Tue, 17 May 2011 00:23:58 +0200 Subject: [PATCH] case fixes --- lib/Cake/Test/Case/View/ThemeViewTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Cake/Test/Case/View/ThemeViewTest.php b/lib/Cake/Test/Case/View/ThemeViewTest.php index 6fbaec7dd..ad5127f3a 100644 --- a/lib/Cake/Test/Case/View/ThemeViewTest.php +++ b/lib/Cake/Test/Case/View/ThemeViewTest.php @@ -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); }