mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-02-07 12:36:25 +00:00
Fixing failing test. In 2.0, absolute paths are not altered.
This commit is contained in:
parent
e29eb1cb03
commit
182b13fdbd
1 changed files with 1 additions and 1 deletions
|
@ -613,7 +613,7 @@ class HtmlHelperTest extends CakeTestCase {
|
||||||
|
|
||||||
$result = $this->Html->script('http://example.com/test.json');
|
$result = $this->Html->script('http://example.com/test.json');
|
||||||
$expected = array(
|
$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);
|
$this->assertTags($result, $expected);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue