diff --git a/setup.py b/setup.py index d0017af..b7b7f34 100644 --- a/setup.py +++ b/setup.py @@ -11,6 +11,7 @@ 'Flask-MongoEngine>=0.7.1', 'peewee==2.*', 'nose>=1.1.2', + 'werkzeug>=0.15.0', ] setup( diff --git a/tests/test_error_messages.py b/tests/test_error_messages.py index a00107c..d09a41d 100644 --- a/tests/test_error_messages.py +++ b/tests/test_error_messages.py @@ -64,7 +64,7 @@ def test_not_found_exception(self): response = self.client.get('/prefix/error/missing') self.assert404(response) self.assertEqual({ - "message": "The requested URL was not found on the server. If you entered " + "message": "The requested URL was not found on the server. If you entered " "the URL manually please check your spelling and try again.", "status": 404 }, response.json)