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:
Brandon Sandrowicz 2015-03-27 12:30:34 -04:00 committed by Markus Unterwaditzer
parent b075737245
commit 20f62e828b

View file

@ -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'