Skip to content

Commit

Permalink
tests: Fix test_local_fs_rm
Browse files Browse the repository at this point in the history
  • Loading branch information
daavoo committed Jan 17, 2023
1 parent c01b6c8 commit 30d3681
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/fs/test_localfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ def test_local_fs_rm(tmp_path):

fs = LocalFileSystem()
fs.remove([tmp_path / "file", tmp_path / "file2"])
assert not fs.exists(tmp_path / "file")
assert not fs.exists(tmp_path / "file2")
assert not fs.exists(fspath(tmp_path / "file"))
assert not fs.exists(fspath(tmp_path / "file2"))


def convert_to_sets(walk_results):
Expand Down

0 comments on commit 30d3681

Please sign in to comment.