Fix tests.

This commit is contained in:
Nicholas Staples
2016-02-09 16:04:49 +00:00
parent 68b6444eed
commit 09d2f0d79d

View File

@@ -200,7 +200,7 @@ def test_should_allow_valid_message(notify_api,
data=json.dumps(data),
headers=[('Content-Type', 'application/json'), auth_header])
assert response.status_code == 200
assert response.status_code == 204
@moto.mock_sqs
@@ -233,7 +233,7 @@ def test_send_email_valid_data(notify_api,
data=json.dumps(data),
headers=[('Content-Type', 'application/json'), auth_header])
assert response.status_code == 200
assert response.status_code == 204
@moto.mock_sqs
@@ -264,7 +264,7 @@ def test_valid_message_with_service_id(notify_api,
data=json.dumps(data),
headers=[('Content-Type', 'application/json'), auth_header])
assert response.status_code == 200
assert response.status_code == 204
@moto.mock_sqs