Skip to content

Commit

Permalink
Add tmp_path to top-level signature
Browse files Browse the repository at this point in the history
  • Loading branch information
xhochy committed Dec 5, 2024
1 parent 9497cb8 commit ac2629c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/basic_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def test_key_error_on_nonexistant_get_file(self, store, key):
with pytest.raises(KeyError):
store.get_file(key, BytesIO())

def test_key_error_on_nonexistant_get_filename(self, store, key):
def test_key_error_on_nonexistant_get_filename(self, store, key, tmp_path):
with pytest.raises(KeyError):
store.get_file(key, "/dev/null")

Expand Down

0 comments on commit ac2629c

Please sign in to comment.