Browse Source

fix test case

euromark 12 years ago
parent
commit
ba5ca7e06b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/View/Helper/HtmlHelperTest.php

+ 1 - 1
tests/TestCase/View/Helper/HtmlHelperTest.php

@@ -1321,7 +1321,7 @@ class HtmlHelperTest extends TestCase {
 		$result = $this->Html->nestedList($list);
 		$this->assertTags($result, $expected);
 
-		$result = $this->Html->nestedList($list, array(), array(), 'ol');
+		$result = $this->Html->nestedList($list, array('tag' => 'ol'));
 		$expected = array(
 			'<ol',
 			'<li', 'Item 1', '/li',