Skip to content

Commit 10fc6f2

Browse files
committed
Test & formatting issues.
1 parent 706fdde commit 10fc6f2

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

tests/conftest.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""PyTest mocked fixtures."""
2-
32
import pytest
4-
53
from clients import Database
64
from config import settings
75

@@ -10,7 +8,7 @@
108
def db() -> Database:
119
"""Return a valid database object."""
1210
return Database(
13-
uri=settings.SQLALCHEMY_DATABASE_URI,
14-
table=settings.SQLALCHEMY_DATABASE_TABLE,
15-
args=settings.SQLALCHEMY_CONNECT_ARGS,
11+
uri = settings.SQLALCHEMY_DATABASE_URI,
12+
table = settings.SQLALCHEMY_DATABASE_TABLE,
13+
args = settings.SQLALCHEMY_CONNECT_ARGS,
1614
)

0 commit comments

Comments
 (0)