Migrate lg_thinq tests to use unit system (#140365)

This commit is contained in:
epenet 2025-03-11 13:54:21 +01:00 committed by GitHub
parent 7826bb9323
commit daaa1486fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,9 +5,10 @@ from unittest.mock import AsyncMock, patch
import pytest
from syrupy import SnapshotAssertion
from homeassistant.const import Platform, UnitOfTemperature
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
from homeassistant.helpers import entity_registry as er
from homeassistant.util.unit_system import US_CUSTOMARY_SYSTEM
from . import setup_integration
@ -23,7 +24,7 @@ async def test_all_entities(
entity_registry: er.EntityRegistry,
) -> None:
"""Test all entities."""
hass.config.units.temperature_unit = UnitOfTemperature.FAHRENHEIT
hass.config.units = US_CUSTOMARY_SYSTEM
with patch("homeassistant.components.lg_thinq.PLATFORMS", [Platform.CLIMATE]):
await setup_integration(hass, mock_config_entry)