From 0df3d2d323eb0acd0cedaae86225a380df1f5c35 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Fri, 5 Jun 2020 17:37:16 +0100 Subject: [PATCH] Update error message content --- tests/app/main/views/test_notifications.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/app/main/views/test_notifications.py b/tests/app/main/views/test_notifications.py index 625048c9c..b92ecfa69 100644 --- a/tests/app/main/views/test_notifications.py +++ b/tests/app/main/views/test_notifications.py @@ -23,13 +23,13 @@ from tests.conftest import ( (None, 'delivered', 'Delivered'), (None, 'failed', 'Failed'), (None, 'temporary-failure', 'Phone not accepting messages right now'), - (None, 'permanent-failure', 'Phone number does not exist'), + (None, 'permanent-failure', 'Not delivered'), (None, 'technical-failure', 'Technical failure'), ('team', 'delivered', 'Delivered'), ('live', 'delivered', 'Delivered'), ('test', 'sending', 'Sending (test)'), ('test', 'delivered', 'Delivered (test)'), - ('test', 'permanent-failure', 'Phone number does not exist (test)'), + ('test', 'permanent-failure', 'Not delivered (test)'), ]) @pytest.mark.parametrize('user', [ create_active_user_with_permissions(),