diff --git a/tests/test_html.py b/tests/test_html.py index e6a5ca8..232af8f 100755 --- a/tests/test_html.py +++ b/tests/test_html.py @@ -102,7 +102,7 @@ def test_html_text_around_tag_and_spaces() -> None: def test_html_nested_tags_and_spaces() -> None: check( "\\block {a\n\nt \\m {tt} t\n\na}", - "

a

t tt t

a

", + "

a

t tt t

a

", "Text around two tags with spaces", ) @@ -110,7 +110,7 @@ def test_html_nested_tags_and_spaces() -> None: def test_html_nested_tags_and_spaces_around() -> None: check( "\\block {a\n\n t \\m {tt} t \n\na}", - "

a

t tt t

a

", + "

a

t tt t

a

", "Text around two tags with spaces", ) @@ -118,7 +118,7 @@ def test_html_nested_tags_and_spaces_around() -> None: def test_html_nested_tags_and_multiple_spaces() -> None: check( "\\block {a\n\n t \\m {tt} t \n\na}", - "

a

t tt t

a

", + "

a

t tt t

a

", "Text around two tags with spaces", )