Fixing failing test. In 2.0, absolute paths are not altered.

This commit is contained in:
mark_story 2011-08-14 14:49:56 -04:00
parent e29eb1cb03
commit 182b13fdbd

View file

@ -613,7 +613,7 @@ class HtmlHelperTest extends CakeTestCase {
$result = $this->Html->script('http://example.com/test.json');
$expected = array(
'script' => array('type' => 'text/javascript', 'src' => 'http://example.com/test.json.js')
'script' => array('type' => 'text/javascript', 'src' => 'http://example.com/test.json')
);
$this->assertTags($result, $expected);