Skip to content

Commit 8bc865b

Browse files
committed
Fixed typo to iterate on entity map values
1 parent 12fa772 commit 8bc865b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unified_format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ def advance_cluster_times(self) -> None:
629629
"""Manually synchronize entities when desired"""
630630
if not self._cluster_time:
631631
self._cluster_time = self.test.client.admin.command("ping").get("$clusterTime")
632-
for entity in self._entities:
632+
for entity in self._entities.values():
633633
if isinstance(entity, ClientSession):
634634
entity.advance_cluster_time(self._cluster_time)
635635

0 commit comments

Comments
 (0)