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(),