Skip to content

Commit

Permalink
Format tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rushter committed Jul 27, 2023
1 parent 89118d2 commit 2ea7b71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,7 @@ def test_script_contain(parser):
""")
assert html_parser.scripts_contain('super_value')


@pytest.mark.parametrize(*_PARSERS_PARAMETRIZER)
def test_hash_nodes(parser):
tree = parser("""<div><p><strong>J</strong>ohn</p><p>Doe</p></div>""")
Expand Down Expand Up @@ -559,4 +560,3 @@ def test_merge_text_nodes(parser):
assert node.html == "<div><p>John</p><p>Doe</p></div>"
text = tree.text(deep=True, separator=" ", strip=True)
assert text == "John Doe"

0 comments on commit 2ea7b71

Please sign in to comment.