From 84860b2a1de02febac162bb8820215fe0f559161 Mon Sep 17 00:00:00 2001 From: Martyn Inglis Date: Thu, 27 Apr 2017 10:41:31 +0100 Subject: [PATCH] Adds a debug line to try and debug jenkins --- tests/app/v2/notifications/test_post_notifications.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/app/v2/notifications/test_post_notifications.py b/tests/app/v2/notifications/test_post_notifications.py index 23bc9ecb1..42a53192e 100644 --- a/tests/app/v2/notifications/test_post_notifications.py +++ b/tests/app/v2/notifications/test_post_notifications.py @@ -264,6 +264,7 @@ def test_post_sms_notification_returns_201_if_allowed_to_send_int_sms(notify_db, data=json.dumps(data), headers=[('Content-Type', 'application/json'), auth_header]) + print(json.loads(response.get_data(as_text=True))) assert response.status_code == 201 assert response.headers['Content-type'] == 'application/json'