From 20f62e828b2ed100f7aa907b60880c8938593740 Mon Sep 17 00:00:00 2001 From: Brandon Sandrowicz Date: Fri, 27 Mar 2015 12:30:34 -0400 Subject: [PATCH] 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`. --- tests/test_basic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_basic.py b/tests/test_basic.py index 32a712bf..695e346e 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -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'