Fix redefined-outer-name

This commit is contained in:
RatishT 2024-06-19 16:42:19 +02:00
parent d718ecf6d3
commit a0e30b60b7
10 changed files with 98 additions and 98 deletions

View file

@ -131,7 +131,7 @@ def test_app_tearing_down_with_unhandled_exception(app, client):
assert str(cleanup_stuff[0]) == "dummy"
def test_app_ctx_globals_methods(app, app_ctx):
def test_app_ctx_globals_methods(app, app_ctx_local):
# get
assert flask.g.get("foo") is None
assert flask.g.get("foo", "bar") == "bar"