From 3363cc6979fc659e2148bea12d5118e34dfd58bc Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Wed, 21 Feb 2024 09:09:45 -0800 Subject: [PATCH] change test phone number --- tests/app/utils/test_csv.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/app/utils/test_csv.py b/tests/app/utils/test_csv.py index 4a43b81c3..78a1da42b 100644 --- a/tests/app/utils/test_csv.py +++ b/tests/app/utils/test_csv.py @@ -14,7 +14,7 @@ from tests.conftest import fake_uuid def _get_notifications_csv( row_number=1, - recipient="2028675309", + recipient="8005555555", template_name="foo", template_type="sms", job_name="bar.csv", @@ -89,14 +89,14 @@ def get_notifications_csv_mock( None, [ "Recipient,Template,Sent by,Batch File,Carrier Response,Status,Time\n", - "2028675309,foo,,,Did not like it,Delivered,1943-04-19 08:00:00 AM US/Eastern\r\n", + "8005555555,foo,,,Did not like it,Delivered,1943-04-19 08:00:00 AM US/Eastern\r\n", ], ), ( "Anne Example", [ "Recipient,Template,Sent by,Batch File,Carrier Response,Status,Time\n", - "2028675309,foo,Anne Example,,Did not like it,Delivered,1943-04-19 08:00:00 AM US/Eastern\r\n", # noqa + "8005555555,foo,Anne Example,,Did not like it,Delivered,1943-04-19 08:00:00 AM US/Eastern\r\n", # noqa ], ), ], @@ -125,7 +125,7 @@ def test_generate_notifications_csv_without_job( ( """ phone number - 2028675309 + 8005555555 """, [ "Recipient", @@ -137,7 +137,7 @@ def test_generate_notifications_csv_without_job( "Time", ], [ - "2028675309", + "8005555555", "foo", "Fake Person", "bar.csv", @@ -149,7 +149,7 @@ def test_generate_notifications_csv_without_job( ( """ phone number, a, b, c - 2028675309, 🐜,🐝,🦀 + 8005555555, 🐜,🐝,🦀 """, [ "Recipient", @@ -164,7 +164,7 @@ def test_generate_notifications_csv_without_job( "c", ], [ - "2028675309", + "8005555555", "foo", "Fake Person", "bar.csv", @@ -179,7 +179,7 @@ def test_generate_notifications_csv_without_job( ( """ "phone number", "a", "b", "c" - "2028675309","🐜,🐜","🐝,🐝","🦀" + "8005555555","🐜,🐜","🐝,🐝","🦀" """, [ "Recipient", @@ -194,7 +194,7 @@ def test_generate_notifications_csv_without_job( "c", ], [ - "2028675309", + "8005555555", "foo", "Fake Person", "bar.csv",