From 03faaa95dcaf0ec8870337e214e428442750df2c Mon Sep 17 00:00:00 2001 From: Vincent Date: Fri, 19 Jul 2024 18:07:51 +0200 Subject: [PATCH] Remove breakpoint --- .../tests/test_pipeline/test_flows/test_distribute_pnos.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/datascience/tests/test_pipeline/test_flows/test_distribute_pnos.py b/datascience/tests/test_pipeline/test_flows/test_distribute_pnos.py index 93ff7f9069..de07855aaa 100644 --- a/datascience/tests/test_pipeline/test_flows/test_distribute_pnos.py +++ b/datascience/tests/test_pipeline/test_flows/test_distribute_pnos.py @@ -2210,7 +2210,7 @@ def test_make_update_manual_prior_notifications_statement( @patch("src.pipeline.helpers.emails.send_sms") @patch("src.pipeline.helpers.emails.send_fax") @patch("src.pipeline.flows.distribute_pnos.requests") -def test_flow_abracadabra( +def test_flow( mock_requests, mock_send_fax, mock_send_sms, @@ -2333,8 +2333,6 @@ class UnexpectedFailureOfDeath(Exception): "success", ].all() - breakpoint() - @pytest.mark.parametrize("zero_pno_types", ["manual", "logbook", "both"]) @pytest.mark.parametrize("is_integration", [True, False])