Skip to content

Commit

Permalink
Update paths
Browse files Browse the repository at this point in the history
  • Loading branch information
wpreimes committed Nov 16, 2023
1 parent c86d79b commit fcfbd21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_filecollection.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ def test_from_csv(self):
for thisfile, otherfile in zip(
self.coll.iter_filehandlers(), other.iter_filehandlers()
):
assert str(thisfile.file_path) == str(otherfile.file_path)
assert Path(thisfile.file_path) == Path(otherfile.file_path)
"Paths dont match"
assert str(thisfile.root.path) == str(otherfile.root.path)
assert Path(thisfile.root.path) == Path(otherfile.root.path)
"Paths dont match"
assert thisfile.metadata == otherfile.metadata
"Meta dont match"
Expand Down

0 comments on commit fcfbd21

Please sign in to comment.