From fce9d04896eb07ac2a566f38eb3f308017fceaf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Wed, 1 Feb 2023 23:28:11 +0800 Subject: [PATCH] Removed SQLALCHEMY_ECHO from the test site. --- tests/testsite/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/testsite/__init__.py b/tests/testsite/__init__.py index edb0995..32a90ab 100644 --- a/tests/testsite/__init__.py +++ b/tests/testsite/__init__.py @@ -55,7 +55,6 @@ def create_app(is_testing: bool = False) -> Flask: }) if is_testing: app.config["TESTING"] = True - app.config["SQLALCHEMY_ECHO"] = True babel_js.init_app(app) csrf.init_app(app)