Skip to content
This repository was archived by the owner on Apr 29, 2025. It is now read-only.

Commit 09ec656

Browse files
committed
Requires werkzeug >= 0.15 during test execution
Because it fixes NotFound Error message
1 parent 71a7869 commit 09ec656

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
'Flask-MongoEngine>=0.7.1',
1212
'peewee==2.*',
1313
'nose>=1.1.2',
14+
'werkzeug>=0.15.0',
1415
]
1516

1617
setup(

tests/test_error_messages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def test_not_found_exception(self):
6464
response = self.client.get('/prefix/error/missing')
6565
self.assert404(response)
6666
self.assertEqual({
67-
"message": "The requested URL was not found on the server. If you entered "
67+
"message": "The requested URL was not found on the server. If you entered "
6868
"the URL manually please check your spelling and try again.",
6969
"status": 404
7070
}, response.json)

0 commit comments

Comments
 (0)