Upgrade jsonschema from 3.0.0b3 to 3.0.1

Running `make freeze-requirements` causes Werkzeug to be updated from
0.14.1 to 0.15.1, which means that we need to change the message of 1
test.
This commit is contained in:
Katie Smith
2019-03-21 11:49:44 +00:00
parent 8eb3e6d4b1
commit 05ab6ceeef
3 changed files with 7 additions and 7 deletions

View File

@@ -21,7 +21,7 @@ def test_should_reject_if_invalid_uuid(notify_api):
)
body = json.loads(response.get_data(as_text=True))
assert response.status_code == 404
assert body['message'] == 'The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.' # noqa
assert body['message'] == 'The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.' # noqa
assert body['result'] == 'error'