diff --git a/chromadb/test/property/test_collections.py b/chromadb/test/property/test_collections.py index c658b545df2..a5ba9aef479 100644 --- a/chromadb/test/property/test_collections.py +++ b/chromadb/test/property/test_collections.py @@ -57,7 +57,7 @@ def create_coll( self.set_model(coll.name, coll.metadata) assert c.name == coll.name - assert c.metadata == coll.metadata + assert c.metadata == self.model[coll.name] return multiple(coll) @rule(coll=collections) @@ -151,7 +151,7 @@ def get_or_create_coll( # Check that model and API are in sync assert c.name == coll.name - assert c.metadata == coll.metadata + assert c.metadata == self.model[coll.name] return multiple(coll) @rule( @@ -199,7 +199,7 @@ def modify_coll( c = self.api.get_collection(name=coll.name) assert c.name == coll.name - assert c.metadata == coll.metadata + assert c.metadata == self.model[coll.name] return multiple(coll) def set_model(