mirror of
https://github.com/home-assistant/core.git
synced 2025-07-05 04:17:10 +00:00
15 lines
321 B
Python
15 lines
321 B
Python
"""Test configuration for auth."""
|
|
|
|
import pytest
|
|
|
|
from tests.typing import ClientSessionGenerator
|
|
|
|
|
|
@pytest.fixture
|
|
def aiohttp_client(
|
|
aiohttp_client: ClientSessionGenerator,
|
|
socket_enabled: None,
|
|
) -> ClientSessionGenerator:
|
|
"""Return aiohttp_client and allow opening sockets."""
|
|
return aiohttp_client
|