From b694f6ac9d3901a49667c4a6a938321005550b2c Mon Sep 17 00:00:00 2001 From: dandds Date: Tue, 8 Jan 2019 08:53:37 -0500 Subject: [PATCH] remove rogue debugger --- tests/routes/task_orders/test_index.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/routes/task_orders/test_index.py b/tests/routes/task_orders/test_index.py index 53b8e9be..a28981da 100644 --- a/tests/routes/task_orders/test_index.py +++ b/tests/routes/task_orders/test_index.py @@ -23,6 +23,4 @@ def test_download_summary(client, user_session): doc = zip_.read(Docx.DOCUMENT_FILE).decode() for attr, val in task_order.to_dictionary().items(): assert attr in doc - if not xml_translated(val) in doc: - __import__("ipdb").set_trace() assert xml_translated(val) in doc