Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Payne committed Sep 20, 2023
1 parent 84faafb commit 95f1885
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 @@ -23,8 +23,8 @@ def read_singerlake_config():


@pytest.fixture(scope="session")
def read_singerlake(singerlake_config: dict):
singerlake = Singerlake(config=singerlake_config)
def read_singerlake(read_singerlake_config: dict):
singerlake = Singerlake(config=read_singerlake_config)
singerlake.clean_working_dir()
yield singerlake
singerlake.clean_working_dir()

0 comments on commit 95f1885

Please sign in to comment.