Fix failing test.

This commit is contained in:
mark_story 2012-01-25 21:19:16 -05:00
parent 5b9d69fcc8
commit 9089bba84b

View file

@ -313,8 +313,6 @@ class HtmlHelperTest extends CakeTestCase {
);
$this->assertTags($result, $expected);
Configure::write('Asset.timestamp', 'force');
$result = $this->Html->link($this->Html->image('../favicon.ico'), '#', array('escape' => false));
$expected = array(
'a' => array('href' => '#'),
@ -324,7 +322,6 @@ class HtmlHelperTest extends CakeTestCase {
$this->assertTags($result, $expected);
$result = $this->Html->image('../favicon.ico', array('url' => '#'));
$expected = array(
'a' => array('href' => '#'),
'img' => array('src' => 'img/../favicon.ico', 'alt' => ''),