Browse Source

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`.
pull/1418/head
Brandon Sandrowicz 10 years ago committed by Markus Unterwaditzer
parent
commit
20f62e828b
  1. 2
      tests/test_basic.py

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

Loading…
Cancel
Save