Skip to content

Commit b796b75

Browse files
committed
Fix test following changing Python behavior #264
1 parent f5eb2c8 commit b796b75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/rewriting/test_html_rewriting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ def test_rewrite_base_href(rewrite_base_href_content: ContentForTests):
789789
),
790790
pytest.param(
791791
"""<img src="image.png?param1=value1&param2=value2">""",
792-
"""<img src="image.png%3Fparam1%3Dvalue1%C2%B6m2%3Dvalue2">""",
792+
"""<img src="image.png%3Fparam1%3Dvalue1%26param2%3Dvalue2">""",
793793
id="badly_escaped_src",
794794
),
795795
],

0 commit comments

Comments
 (0)