From 5cd07e9f88446f60b74450a65e93fffb3987583b Mon Sep 17 00:00:00 2001 From: Brian Kohan Date: Sat, 17 Aug 2024 23:18:32 -0700 Subject: [PATCH] remove breakpoint --- tests/tests.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/tests.py b/tests/tests.py index 785c237..b75cbe8 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -248,12 +248,7 @@ def check_text(html, help_txt, txt_number=0, threshold=0.95): for element in ["
", "", "", "
"]: 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