Bump Flask and itsdangerous

This bumps Flask to version 2.1.0, which requires some minor changes to
the app code and itsdangerous to also be bumped.
This commit is contained in:
Katie Smith
2022-04-05 17:06:08 +01:00
parent 9902ddfc22
commit badd0e0894
5 changed files with 32 additions and 44 deletions

View File

@@ -128,7 +128,7 @@ def test_bad_method(app_for_test):
assert response.status_code == 405
assert response.json == {
assert response.get_json(force=True) == {
"result": "error",
"message": "The method is not allowed for the requested URL."
}