diff --git a/tests/test_documents.py b/tests/test_documents.py index 645bf51c..1f8907f8 100644 --- a/tests/test_documents.py +++ b/tests/test_documents.py @@ -584,7 +584,6 @@ def test_verify_stamp_erasure_certificate(user: UserClient, client: Client): """Test verify stamp of one export certificate in PDF.""" s = file('erase-sectors.snapshot') snapshot, response = user.post(s, res=Snapshot) - # import pdb; pdb.set_trace() doc, _ = user.get(res=documents.DocumentDef.t, item='erasures/', diff --git a/tests/test_tag.py b/tests/test_tag.py index 040b2751..f6402bd4 100644 --- a/tests/test_tag.py +++ b/tests/test_tag.py @@ -26,7 +26,6 @@ from tests.conftest import file @pytest.mark.usefixtures(conftest.app_context.__name__) def test_create_tag(user: UserClient): """Creates a tag specifying a custom organization.""" - # import pdb; pdb.set_trace() org = Organization(name='bar', tax_id='bartax') tag = Tag(id='bar-1', org=org, provider=URL('http://foo.bar'), owner_id=user.user['id']) db.session.add(tag)