Updating tests to account for attribute whitespace change.

This commit is contained in:
mark_story 2011-02-05 05:52:18 -05:00
parent 8f66fe6ed4
commit f58f3763eb
2 changed files with 3 additions and 3 deletions
cake/tests/cases/libs/view/helpers

View file

@ -1298,7 +1298,7 @@ class HtmlHelperTest extends CakeTestCase {
$result = $this->Html->useTag('formend');
$this->assertTags($result, '/form');
$result = $this->Html->useTag('form', 'test');
$result = $this->Html->useTag('form', ' test');
$this->assertEqual($result, '<form test>');
$result = $this->Html->useTag('form', array('test' => 'ok'));