Skip to content

Commit

Permalink
Revert "remove redundant test scaffolding"
Browse files Browse the repository at this point in the history
  • Loading branch information
H4ppy-04 committed May 27, 2023
1 parent 15da446 commit 433ed0b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_unit_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ def test_word_from_soup_raises_index_error(self):

with self.assertRaises(IndexError):
_soup = get_soup_object_from_word(self.word)
_soup.find_all_next("a")[0].select(".definintion") # pyright: ignore
_soup.find_all_next("a")[0].select( # pyright: ignore
".definintion"
)

def test_space_insert_after_chars(self):
"""Test that a full stop before a character has a space inserted after
Expand Down

0 comments on commit 433ed0b

Please sign in to comment.