Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
meksor committed Aug 12, 2024
1 parent 2be9c41 commit b3d41ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ def yield_sqlite_platform(*args):


def get_platform(gen):
def fixture(request):
with gen(request.config.options.postgres_dsn) as p:
def fixture(pytestconfig):
with gen(pytestconfig.option.postgres_dsn) as p:
yield p

return fixture
Expand Down

0 comments on commit b3d41ae

Please sign in to comment.