Skip to content

Commit

Permalink
Track change in resources package such that we now get file: URIs
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Apr 5, 2023
1 parent b657111 commit 22c821d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_datastore.py
Original file line number Diff line number Diff line change
Expand Up @@ -1824,8 +1824,8 @@ def testRepr(self):
uris = DatasetRefURIs(ResourcePath("1/2/3"), {"comp": ResourcePath("a/b/c")})
self.assertEqual(
repr(uris),
f'DatasetRefURIs(ResourcePath("{os.getcwd()}/1/2/3"), '
f"{{'comp': ResourcePath(\"{os.getcwd()}/a/b/c\")}})",
f'DatasetRefURIs(ResourcePath("file://{os.getcwd()}/1/2/3"), '
f"{{'comp': ResourcePath(\"file://{os.getcwd()}/a/b/c\")}})",
)


Expand Down

0 comments on commit 22c821d

Please sign in to comment.