Skip to content

Commit

Permalink
remove breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Aug 18, 2024
1 parent cfeb872 commit 5cd07e9
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,12 +248,7 @@ def check_text(html, help_txt, txt_number=0, threshold=0.95):
for element in ["<pre>", "<span>", "</span>", "</pre>"]:
txt = txt.strip(element)
assert txt is not None
try:
assert similarity(txt, help_txt) > threshold
except AssertionError:
import ipdb

ipdb.set_trace()
assert similarity(txt, help_txt) > threshold
return txt


Expand Down

0 comments on commit 5cd07e9

Please sign in to comment.