From 5bb8c3a942cd35c89e335d4c12317d06375b1bfb Mon Sep 17 00:00:00 2001 From: mark_story Date: Sat, 14 Apr 2012 10:49:11 -0400 Subject: [PATCH] Fix code standards. --- lib/Cake/Test/Case/View/ViewTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/Cake/Test/Case/View/ViewTest.php b/lib/Cake/Test/Case/View/ViewTest.php index 74762201440..959f5ee114b 100644 --- a/lib/Cake/Test/Case/View/ViewTest.php +++ b/lib/Cake/Test/Case/View/ViewTest.php @@ -999,13 +999,12 @@ public function testRenderUsingViewProperty() { * * @return void */ - public function testGetViewFileNameSubdirWithPluginAndViewPath() - { + public function testGetViewFileNameSubdirWithPluginAndViewPath() { $this->PostsController->plugin = 'TestPlugin'; $this->PostsController->viewPath = 'Elements'; $this->PostsController->name = 'Posts'; $View = new TestView($this->PostsController); - + $expected = CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS . 'TestPlugin' . DS . 'View' . DS . 'Elements' . DS . 'sub_dir' . DS . 'sub_element.ctp'; $this->assertEquals($expected, $View->getViewFileName('sub_dir/sub_element'));