|
|
@@ -4,12 +4,12 @@ from unittest.mock import AsyncMock, patch
|
|
|
from homeassistant.components.lock import STATE_LOCKED, STATE_UNLOCKED
|
|
|
from homeassistant.const import STATE_UNAVAILABLE
|
|
|
|
|
|
-from custom_components.goldair_climate.heater.const import (
|
|
|
+from custom_components.tuya_local.heater.const import (
|
|
|
ATTR_CHILD_LOCK,
|
|
|
ATTR_HVAC_MODE,
|
|
|
PROPERTY_TO_DPS_ID,
|
|
|
)
|
|
|
-from custom_components.goldair_climate.heater.lock import GoldairHeaterChildLock
|
|
|
+from custom_components.tuya_local.heater.lock import GoldairHeaterChildLock
|
|
|
|
|
|
from ..const import GPPH_HEATER_PAYLOAD
|
|
|
from ..helpers import assert_device_properties_set
|
|
|
@@ -18,7 +18,7 @@ from ..helpers import assert_device_properties_set
|
|
|
class TestGoldairHeaterChildLock(IsolatedAsyncioTestCase):
|
|
|
def setUp(self):
|
|
|
device_patcher = patch(
|
|
|
- "custom_components.goldair_climate.device.GoldairTuyaDevice"
|
|
|
+ "custom_components.tuya_local.device.GoldairTuyaDevice"
|
|
|
)
|
|
|
self.addCleanup(device_patcher.stop)
|
|
|
self.mock_device = device_patcher.start()
|