We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcd6710 commit bce8a6eCopy full SHA for bce8a6e
tests/integration/conftest.py
@@ -574,11 +574,9 @@ def fixture_registry_async_client_custom_config(
574
) -> Callable[[ConfigDefaults], AsyncContextManager[Client]]:
575
@asynccontextmanager
576
async def client_from_custom_config(config: ConfigDefaults) -> Client:
577
- async with (
578
- registry_cluster_from_custom_config(config) as registry_description,
579
- _registry_async_client(request, registry_description, loop) as client,
580
- ):
581
- yield client
+ async with registry_cluster_from_custom_config(config) as registry_description:
+ async with _registry_async_client(request, registry_description, loop) as client:
+ yield client
582
583
return client_from_custom_config
584
0 commit comments