forked from orbit-oss/flask
Fix Possible Typo
Looks like that was meant to be `config_key`. It works by accident because the function is defined in the same scope as the look that passes `config_key` to `apprunner`.
This commit is contained in:
parent
b075737245
commit
20f62e828b
1 changed files with 1 additions and 1 deletions
|
|
@ -1181,7 +1181,7 @@ def test_test_app_proper_environ():
|
|||
|
||||
|
||||
def test_exception_propagation():
|
||||
def apprunner(configkey):
|
||||
def apprunner(config_key):
|
||||
app = flask.Flask(__name__)
|
||||
app.config['LOGGER_HANDLER_POLICY'] = 'never'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue