From 7927901938ef88b138eeccad0c845cc3584222b4 Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Tue, 12 Jul 2016 10:45:47 +0100 Subject: [PATCH] Fix indentation --- tests/app/user/test_rest.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/app/user/test_rest.py b/tests/app/user/test_rest.py index 9e3d726fe..7d2e61ff5 100644 --- a/tests/app/user/test_rest.py +++ b/tests/app/user/test_rest.py @@ -430,10 +430,10 @@ def test_send_user_reset_password_should_return_400_when_email_is_missing(notify data = json.dumps({}) auth_header = create_authorization_header() - resp = client.post( - url_for('user.send_user_reset_password'), - data=data, - headers=[('Content-Type', 'application/json'), auth_header]) + resp = client.post( + url_for('user.send_user_reset_password'), + data=data, + headers=[('Content-Type', 'application/json'), auth_header]) assert resp.status_code == 400 assert json.loads(resp.get_data(as_text=True))['message'] == {'email': ['Missing data for required field.']}