From 05ab6ceeefca415207c5c7d48566b1c400057608 Mon Sep 17 00:00:00 2001 From: Katie Smith Date: Thu, 21 Mar 2019 11:49:44 +0000 Subject: [PATCH] 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. --- requirements-app.txt | 2 +- requirements.txt | 10 +++++----- tests/app/delivery/test_rest.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/requirements-app.txt b/requirements-app.txt index 5f9b3cff6..047b0b29d 100644 --- a/requirements-app.txt +++ b/requirements-app.txt @@ -13,7 +13,7 @@ click-datetime==0.2 eventlet==0.23.0 gunicorn==19.7.1 iso8601==0.1.12 -jsonschema==3.0.0b3 +jsonschema==3.0.1 marshmallow-sqlalchemy==0.16.0 marshmallow==2.18.1 psycopg2-binary==2.7.7 diff --git a/requirements.txt b/requirements.txt index 4bbd6cde4..143485b1a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -15,7 +15,7 @@ click-datetime==0.2 eventlet==0.23.0 gunicorn==19.7.1 iso8601==0.1.12 -jsonschema==3.0.0b3 +jsonschema==3.0.1 marshmallow-sqlalchemy==0.16.0 marshmallow==2.18.1 psycopg2-binary==2.7.7 @@ -40,12 +40,12 @@ alembic==1.0.8 amqp==1.4.9 anyjson==0.3.3 attrs==19.1.0 -awscli==1.16.125 +awscli==1.16.129 bcrypt==3.1.6 billiard==3.3.0.23 bleach==3.1.0 boto3==1.6.16 -botocore==1.12.115 +botocore==1.12.119 certifi==2019.3.9 chardet==3.0.4 Click==7.0 @@ -58,7 +58,7 @@ idna==2.8 Jinja2==2.10 jmespath==0.9.4 kombu==3.0.37 -Mako==1.0.7 +Mako==1.0.8 MarkupSafe==1.1.1 mistune==0.8.4 monotonic==1.5 @@ -82,4 +82,4 @@ smartypants==2.0.1 statsd==3.3.0 urllib3==1.24.1 webencodings==0.5.1 -Werkzeug==0.14.1 +Werkzeug==0.15.1 diff --git a/tests/app/delivery/test_rest.py b/tests/app/delivery/test_rest.py index 08a5d0a05..fbf980139 100644 --- a/tests/app/delivery/test_rest.py +++ b/tests/app/delivery/test_rest.py @@ -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'