Skip to content

Commit

Permalink
test: fix failing tests due to missing file:// prefix again
Browse files Browse the repository at this point in the history
  • Loading branch information
bushshrub authored and ejguan committed Jun 2, 2022
1 parent 2a4efb4 commit ff13537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_fsspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def test_fsspec_file_lister_iterdatapipe(self):
datapipe = datapipe.list_files_by_fsspec()
for path in datapipe:
self.assertIn(
path,
path.split("://")[1],
{fsspec.implementations.local.make_path_posix(file) for file in self.temp_sub_files},
)

Expand Down

0 comments on commit ff13537

Please sign in to comment.