From ab28691a70076e1bcae99cc6d92fb030203e4868 Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Tue, 31 Jul 2018 14:06:29 +0100 Subject: [PATCH] Add number to migration file name --- tests/app/v2/notifications/test_get_notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/v2/notifications/test_get_notifications.py b/tests/app/v2/notifications/test_get_notifications.py index b5a03706f..1c33b1a34 100644 --- a/tests/app/v2/notifications/test_get_notifications.py +++ b/tests/app/v2/notifications/test_get_notifications.py @@ -441,7 +441,7 @@ def test_get_all_notifications_filter_by_status_invalid_status(client, sample_no assert json_response['status_code'] == 400 assert len(json_response['errors']) == 1 - assert json_response['errors'][0]['message'] == "status elephant is not one of [created, sending, sent, " \ + assert json_response['errors'][0]['message'] == "status elephant is not one of [cancelled, created, sending, sent, " \ "delivered, pending, failed, technical-failure, temporary-failure, permanent-failure, pending-virus-check, " \ "virus-scan-failed, accepted, received]"