From 698b20596ff31895fd434a89c5f0b610f850e848 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Thu, 27 Apr 2017 16:03:27 +0100 Subject: [PATCH] Remove references to old utils code MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These methods don’t exist any more. Not doing this reformatting in the tests probably makes the tests more robust too 😬 --- tests/app/delivery/test_send_to_providers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/app/delivery/test_send_to_providers.py b/tests/app/delivery/test_send_to_providers.py index 9852721c9..063d86e71 100644 --- a/tests/app/delivery/test_send_to_providers.py +++ b/tests/app/delivery/test_send_to_providers.py @@ -506,7 +506,7 @@ def test_should_send_sms_to_international_providers( ) firetext_client.send_sms.assert_called_once_with( - to=format_phone_number(validate_phone_number("+447234123999")), + to="447234123999", content=ANY, reference=str(db_notification_uk.id), sender=None @@ -517,7 +517,7 @@ def test_should_send_sms_to_international_providers( ) mmg_client.send_sms.assert_called_once_with( - to=format_phone_number(validate_phone_number("+447234123111")), + to="447234123111", content=ANY, reference=str(db_notification_international.id), sender=None