Browse Source

Removed unneeded method call from test.

ADmad 11 years ago
parent
commit
aac06936df
1 changed files with 0 additions and 1 deletions
  1. 0 1
      tests/TestCase/View/ViewTest.php

+ 0 - 1
tests/TestCase/View/ViewTest.php

@@ -823,7 +823,6 @@ class ViewTest extends TestCase {
 	public function testElementCacheHelperNoCache() {
 		$Controller = new ViewPostsController();
 		$View = $Controller->createView();
-		$View->loadHelpers();
 		$result = $View->element('test_element', array('ram' => 'val', 'test' => array('foo', 'bar')));
 		$this->assertEquals('this is the test element', $result);
 	}