From 2ee744e56d77aee6a8b60f2eee247d0b389bea05 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Fri, 23 Feb 2024 13:31:49 -0800 Subject: [PATCH] fixed spacing --- tests/app/main/views/test_jobs.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/app/main/views/test_jobs.py b/tests/app/main/views/test_jobs.py index caffa01bb..6c9192a15 100644 --- a/tests/app/main/views/test_jobs.py +++ b/tests/app/main/views/test_jobs.py @@ -13,7 +13,6 @@ from tests.conftest import ( create_active_user_with_permissions, normalize_spaces, ) -from pprint import pprint def test_old_jobs_hub_redirects( client_request, @@ -417,7 +416,6 @@ def test_should_show_updates_for_one_job_as_json( ) content = json.loads(response.get_data(as_text=True)) - pprint(content) assert "pending" in content["counts"] assert "delivered" in content["counts"] assert "failed" in content["counts"]