diff --git a/tests/test_app/__init__.py b/tests/test_app/__init__.py index 53b3de0..379e4ec 100644 --- a/tests/test_app/__init__.py +++ b/tests/test_app/__init__.py @@ -16,6 +16,7 @@ def create_app(config): app.debug = True app.config['SECRET_KEY'] = 'secret' app.config['TESTING'] = True + app.config['LOGIN_DISABLED'] = False for key, value in config.items(): app.config[key] = value