Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions test/asynchronous/unified_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ async def _create_entity(self, entity_spec, uri=None):
if uri:
kwargs["h"] = uri
client = await self.test.async_rs_or_single_client(**kwargs)
await client.aconnect()
self[spec["id"]] = client
return
elif entity_type == "database":
Expand Down
1 change: 1 addition & 0 deletions test/unified_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@ def _create_entity(self, entity_spec, uri=None):
if uri:
kwargs["h"] = uri
client = self.test.rs_or_single_client(**kwargs)
client._connect()
self[spec["id"]] = client
return
elif entity_type == "database":
Expand Down
Loading