Skip to content

Commit

Permalink
fixups after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
richardjgowers committed Feb 15, 2023
1 parent 411dad1 commit 4903ade
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gufe/tests/storage/test_metadatastore.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_delete(self):
raise NotImplementedError("This should call self._test_delete")

def _test_load_all_metadata(self, metadata):
expected = {'path/to/foo.txt': 'bar'}
expected = {'path/to/foo.txt': Metadata(md5='bar')}
metadata._metadata_cache = {}
loaded = metadata.load_all_metadata()
assert loaded == expected
Expand All @@ -69,7 +69,7 @@ def _test_len(self, metadata):
assert len(metadata) == 1

def _test_getitem(self, metadata):
assert metadata["path/to/foo.txt"] == "bar"
assert metadata["path/to/foo.txt"] == Metadata(md5="bar")


class TestJSONMetadataStore(MetadataTests):
Expand Down

0 comments on commit 4903ade

Please sign in to comment.