From 86adcf06534c1cb96fea5b8f4fc38ea016c43a11 Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Wed, 22 Aug 2012 12:06:21 -0400 Subject: [PATCH] Fix build --- tests/functional_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/functional_tests.py b/tests/functional_tests.py index c5af61e..70f055a 100644 --- a/tests/functional_tests.py +++ b/tests/functional_tests.py @@ -16,7 +16,6 @@ from flask.ext.security.utils import capture_registrations, \ capture_reset_password_requests, capture_passwordless_login_requests from werkzeug.utils import parse_cookie -from example import app from tests import SecurityTest @@ -590,4 +589,5 @@ class DefaultDatastoreTests(SecurityTest): class MongoEngineDatastoreTests(DefaultDatastoreTests): def _create_app(self, auth_config): - return app.create_mongoengine_app(auth_config) + from tests.test_app.mongoengine import create_app + return create_app(auth_config)