mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 17:16:18 +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');
|
||||
$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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue