From c99b65252fe0113edbd36c85554edc0747682b51 Mon Sep 17 00:00:00 2001 From: Athanasios Voutsadakis Date: Fri, 28 Apr 2017 16:11:27 +0100 Subject: [PATCH] Fix some typos --- tests/app/notifications/test_notifications_ses_callback.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/app/notifications/test_notifications_ses_callback.py b/tests/app/notifications/test_notifications_ses_callback.py index ba6eaac9d..051050b05 100644 --- a/tests/app/notifications/test_notifications_ses_callback.py +++ b/tests/app/notifications/test_notifications_ses_callback.py @@ -31,7 +31,7 @@ def test_ses_callback_should_fail_if_invalid_json(client): assert json_resp['message'] == 'SES callback failed: invalid json' -def test_ses_callback_should_auto_confirm_subscriptions(client, rmock): +def test_ses_callback_should_autoconfirm_subscriptions(client, rmock): endpoint = json.loads(ses_confirmation_callback())['SubscribeURL'] rmock.request( "GET", @@ -53,7 +53,7 @@ def test_ses_callback_should_auto_confirm_subscriptions(client, rmock): assert json_resp['message'] == 'SES callback succeeded' -def test_ses_callback_autoconfirmat_raises_exception_if_not_200(client, rmock): +def test_ses_callback_autoconfirm_raises_exception_if_not_200(client, rmock): endpoint = json.loads(ses_confirmation_callback())['SubscribeURL'] rmock.request( "GET",