Skip to content

Commit 51bc953

Browse files
committed
fix tsts
1 parent 98b4265 commit 51bc953

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_backend/test__common.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,21 @@ def test_catch_unsafe_relative_path_traversal(tmp_path, bad_path):
3636
html.title("example"),
3737
),
3838
# we strip the head element
39-
'<meta charset="utf-8" /><title>example</title>',
39+
'<meta charset="utf-8"><title>example</title>',
4040
),
4141
(
4242
html._(
4343
html.meta({"charset": "utf-8"}),
4444
html.title("example"),
4545
),
46-
'<meta charset="utf-8" /><title>example</title>',
46+
'<meta charset="utf-8"><title>example</title>',
4747
),
4848
(
4949
[
5050
html.meta({"charset": "utf-8"}),
5151
html.title("example"),
5252
],
53-
'<meta charset="utf-8" /><title>example</title>',
53+
'<meta charset="utf-8"><title>example</title>',
5454
),
5555
],
5656
)

0 commit comments

Comments
 (0)