From 2f120b30e89537ab69458d31ca412dc5d0187dfa Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Tue, 31 Jul 2018 14:13:15 +0100 Subject: [PATCH] Fix codestyle --- tests/app/v2/notifications/test_get_notifications.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/app/v2/notifications/test_get_notifications.py b/tests/app/v2/notifications/test_get_notifications.py index 1c33b1a34..ef12a0fd0 100644 --- a/tests/app/v2/notifications/test_get_notifications.py +++ b/tests/app/v2/notifications/test_get_notifications.py @@ -441,9 +441,9 @@ 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 [cancelled, created, sending, sent, " \ - "delivered, pending, failed, technical-failure, temporary-failure, permanent-failure, pending-virus-check, " \ - "virus-scan-failed, accepted, received]" + 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]" def test_get_all_notifications_filter_by_multiple_statuses(client, sample_template):