Skip to content

Commit a1afc11

Browse files
authored
Fix URL replacement in BlockMarkupUrlProcessorTest
1 parent cb4b4ed commit a1afc11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/DataLiberation/Tests/BlockMarkupUrlProcessorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ public static function provider_test_css_url_replacement() {
413413
'Replace single-quoted URL' => array(
414414
'<div style="background: url(\'https://old.com/image.png\');"></div>',
415415
'https://new.com/image.png',
416-
'<div style="background: url(&#039;https://new.com/image.png&#039;);"></div>',
416+
'<div style="background: url(\'https://new.com/image.png\');"></div>',
417417
),
418418
'Replace relative URL' => array(
419419
'<div style="background: url(&quot;/old/path.png&quot;);"></div>',

0 commit comments

Comments
 (0)