Skip to content

Commit

Permalink
Adapt unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
shsdev committed Nov 24, 2024
1 parent f708fb6 commit ffb9a93
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_pairtreestorage.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@ def test_store(self):

def test_get_object_path(self):
pts = PairtreeStorage(test_repo)
expected = os.path.join(test_repo, "pairtree_root/ba/r/data/v00002/bar.tar")
expected = os.path.join(test_repo, "pairtree_root/ba/r/data/v00002")
print(expected)
actual = pts.get_object_path("bar")
print(actual)
self.assertEqual(expected, actual)


Expand Down

0 comments on commit ffb9a93

Please sign in to comment.