Skip to content

Commit

Permalink
smol test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zzstoatzz committed Jun 19, 2024
1 parent 5731738 commit e8c00c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/runner/test_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ def test_repr(self):

class TestLocalStorage:
def test_init(self):
ls = LocalStorage("/path/to/directory")
ls = LocalStorage("/path/to/directory", pull_interval=60)
assert ls._path == Path("/path/to/directory")
assert ls.pull_interval == 60

Expand All @@ -675,7 +675,7 @@ def test_to_pull_step(self):
pull_step = locals.to_pull_step()
assert pull_step == {
"prefect.deployments.steps.set_working_directory": {
"directory": Path("/path/to/directory")
"directory": "/path/to/directory"
}
}

Expand Down

0 comments on commit e8c00c9

Please sign in to comment.