Remove non required Home Connect tests (#144024)

This commit is contained in:
J. Diego Rodríguez Royo
2025-05-01 10:18:32 +02:00
committed by GitHub
parent 17360ede28
commit bc47049d42
10 changed files with 0 additions and 137 deletions

View File

@@ -57,18 +57,6 @@ async def test_entry_setup(
assert config_entry.state == ConfigEntryState.NOT_LOADED
async def test_exception_handling(
integration_setup: Callable[[MagicMock], Awaitable[bool]],
config_entry: MockConfigEntry,
setup_credentials: None,
client_with_exception: MagicMock,
) -> None:
"""Test exception handling."""
assert config_entry.state == ConfigEntryState.NOT_LOADED
assert await integration_setup(client_with_exception)
assert config_entry.state == ConfigEntryState.LOADED
@pytest.mark.parametrize("token_expiration_time", [12345])
async def test_token_refresh_success(
hass: HomeAssistant,