From 5470644e8ab80327b03c851b6736686b1c67c00d Mon Sep 17 00:00:00 2001 From: Bryan Bailey Date: Wed, 6 Apr 2022 22:45:30 -0400 Subject: [PATCH] changed current_app import from flask to app --- tests/test_web.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_web.py b/tests/test_web.py index 145bff9..eb276a6 100644 --- a/tests/test_web.py +++ b/tests/test_web.py @@ -1,8 +1,8 @@ import unittest -from flask import current_app +from app import -from app import create_app, db +from app import create_app, db, current_app class BasicTestCase(unittest.TestCase):