Skip to content

Commit abce2fd

Browse files
committed
debug min version fsspec
1 parent 13c1258 commit abce2fd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pandas/tests/io/test_common.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -730,8 +730,7 @@ def test_iterdir_remote(remote_csv_directory):
730730

731731
fs = fsspec.filesystem("s3")
732732
for file in icom.iterdir(remote_csv_directory):
733-
assert fs.exists(file)
734-
assert file.suffix == ".csv"
735-
736733
# for fsspec<2024.5.0, fs.isfle(PurePosixPath) returns False
734+
assert fs.exists(str(file))
735+
assert file.suffix == ".csv"
737736
assert fs.isfile(str(file))

0 commit comments

Comments
 (0)