From 86b81be8c67cf82e8f26a7f84cbdc5df7198e214 Mon Sep 17 00:00:00 2001 From: John Nduli Date: Fri, 18 Oct 2024 15:06:36 +0300 Subject: refactor: replace gn3.auth.db with gn3.sqlite_db_utils and drop all refs to gn3.auth --- tests/unit/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/unit/conftest.py') diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py index 8005c8e..d9d5492 100644 --- a/tests/unit/conftest.py +++ b/tests/unit/conftest.py @@ -15,7 +15,7 @@ def fxtr_app(): testdb = Path(testdir).joinpath( f'testdb_{datetime.now().strftime("%Y%m%dT%H%M%S")}') app = create_app({ - "TESTING": True, "AUTH_DB": testdb, + "TESTING": True, "OAUTH2_ACCESS_TOKEN_GENERATOR": "tests.unit.auth.test_token.gen_token" }) app.testing = True -- cgit 1.4.1