diff options
| author | John Nduli | 2024-10-18 15:06:36 +0300 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2024-10-18 09:28:40 -0500 |
| commit | 86b81be8c67cf82e8f26a7f84cbdc5df7198e214 (patch) | |
| tree | 7e27fe0d5876d6c473b61bcacf5e73a9a8d83a39 /tests/unit/conftest.py | |
| parent | 27531c0a1350097ca36a555b8546bc282948de04 (diff) | |
| download | genenetwork3-86b81be8c67cf82e8f26a7f84cbdc5df7198e214.tar.gz | |
refactor: replace gn3.auth.db with gn3.sqlite_db_utils and drop all refs to gn3.auth
Diffstat (limited to 'tests/unit/conftest.py')
| -rw-r--r-- | tests/unit/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
