summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGreg Aker <greg@gregaker.net>2011-08-20 23:57:48 +0200
committerGreg Aker <greg@gregaker.net>2011-08-20 23:57:48 +0200
commit92ff07ee199d17a4dccd84114da8b66a95a4f56d (patch)
treecc8b44bfd8e3a4c995d70911c41aad99d188ea3b /tests
parentabbad9ea53e81c6e3211029711ac5b2ab4f1978d (diff)
Updating error in html_helper test_Ul
Diffstat (limited to 'tests')
-rw-r--r--tests/codeigniter/helpers/html_helper_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/helpers/html_helper_test.php b/tests/codeigniter/helpers/html_helper_test.php
index 706874f9e..553fc2bb1 100644
--- a/tests/codeigniter/helpers/html_helper_test.php
+++ b/tests/codeigniter/helpers/html_helper_test.php
@@ -51,7 +51,7 @@ EOH;
$list = array('foo', 'bar');
- $this->assertEquals($expect, ul($list, ' class="test"'));
+ $this->assertEquals($expect, ul($list, 'class="test"'));
$this->assertEquals($expect, ul($list, array('class' => 'test')));
}