Skip to content

Commit

Permalink
Fix linting warning in test_parse.py
Browse files Browse the repository at this point in the history
  • Loading branch information
melissawm committed Dec 29, 2023
1 parent 1eb819f commit 89f9171
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion papyri/tests/test_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,10 @@ def test_parse_warning_directive():
assert items[0].name == "warning"
assert items[0].args == ""
assert items[0].options == dict()
assert items[0].value == "Title The warning directive does not admit a title.\nJust testing now."
assert (
items[0].value
== "Title The warning directive does not admit a title.\nJust testing now."
)
assert items[0].children == []


Expand Down

0 comments on commit 89f9171

Please sign in to comment.