We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5eb2c8 commit e902a25Copy full SHA for e902a25
CHANGELOG.md
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
19
### Fixed
20
21
- JS rewriting abusively rewrite import function (#255)
22
+- Test about badly escaped src in HTML is failing (#264)
23
24
### Added
25
tests/rewriting/test_html_rewriting.py
@@ -789,7 +789,7 @@ def test_rewrite_base_href(rewrite_base_href_content: ContentForTests):
789
),
790
pytest.param(
791
"""<img src="image.png?param1=value1¶m2=value2">""",
792
- """<img src="image.png%3Fparam1%3Dvalue1%C2%B6m2%3Dvalue2">""",
+ """<img src="image.png%3Fparam1%3Dvalue1%26param2%3Dvalue2">""",
793
id="badly_escaped_src",
794
795
],
0 commit comments