Fix flask-login test setting

This commit is contained in:
Matt Wright
2013-09-03 12:20:56 -04:00
parent 1e958115e1
commit 6b3d65d6d6
+1
View File
@@ -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