Skip to content

Commit

Permalink
Test & formatting issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
toddbirchard committed Dec 25, 2024
1 parent 706fdde commit 10fc6f2
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"""PyTest mocked fixtures."""

import pytest

from clients import Database
from config import settings

Expand All @@ -10,7 +8,7 @@
def db() -> Database:
"""Return a valid database object."""
return Database(
uri=settings.SQLALCHEMY_DATABASE_URI,
table=settings.SQLALCHEMY_DATABASE_TABLE,
args=settings.SQLALCHEMY_CONNECT_ARGS,
uri = settings.SQLALCHEMY_DATABASE_URI,
table = settings.SQLALCHEMY_DATABASE_TABLE,
args = settings.SQLALCHEMY_CONNECT_ARGS,
)

0 comments on commit 10fc6f2

Please sign in to comment.