mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Spelling of controlling in mqtt valve tests (#117301)
This commit is contained in:
parent
4f4389ba85
commit
65a4e5a1af
@ -477,7 +477,7 @@ async def test_state_via_state_trough_position_with_alt_range(
|
|||||||
(SERVICE_STOP_VALVE, "SToP"),
|
(SERVICE_STOP_VALVE, "SToP"),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
async def test_controling_valve_by_state(
|
async def test_controlling_valve_by_state(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
mqtt_mock_entry: MqttMockHAClientGenerator,
|
mqtt_mock_entry: MqttMockHAClientGenerator,
|
||||||
service: str,
|
service: str,
|
||||||
@ -631,7 +631,7 @@ async def test_open_close_payload_config_not_allowed(
|
|||||||
(SERVICE_OPEN_VALVE, "OPEN", STATE_OPEN),
|
(SERVICE_OPEN_VALVE, "OPEN", STATE_OPEN),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
async def test_controling_valve_by_state_optimistic(
|
async def test_controlling_valve_by_state_optimistic(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
mqtt_mock_entry: MqttMockHAClientGenerator,
|
mqtt_mock_entry: MqttMockHAClientGenerator,
|
||||||
service: str,
|
service: str,
|
||||||
@ -683,7 +683,7 @@ async def test_controling_valve_by_state_optimistic(
|
|||||||
(SERVICE_STOP_VALVE, "-1"),
|
(SERVICE_STOP_VALVE, "-1"),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
async def test_controling_valve_by_position(
|
async def test_controlling_valve_by_position(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
mqtt_mock_entry: MqttMockHAClientGenerator,
|
mqtt_mock_entry: MqttMockHAClientGenerator,
|
||||||
service: str,
|
service: str,
|
||||||
@ -734,7 +734,7 @@ async def test_controling_valve_by_position(
|
|||||||
(100, "100"),
|
(100, "100"),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
async def test_controling_valve_by_set_valve_position(
|
async def test_controlling_valve_by_set_valve_position(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
mqtt_mock_entry: MqttMockHAClientGenerator,
|
mqtt_mock_entry: MqttMockHAClientGenerator,
|
||||||
position: int,
|
position: int,
|
||||||
@ -786,7 +786,7 @@ async def test_controling_valve_by_set_valve_position(
|
|||||||
(100, "100", 100, STATE_OPEN),
|
(100, "100", 100, STATE_OPEN),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
async def test_controling_valve_optimistic_by_set_valve_position(
|
async def test_controlling_valve_optimistic_by_set_valve_position(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
mqtt_mock_entry: MqttMockHAClientGenerator,
|
mqtt_mock_entry: MqttMockHAClientGenerator,
|
||||||
position: int,
|
position: int,
|
||||||
@ -843,7 +843,7 @@ async def test_controling_valve_optimistic_by_set_valve_position(
|
|||||||
(100, "127"),
|
(100, "127"),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
async def test_controling_valve_with_alt_range_by_set_valve_position(
|
async def test_controlling_valve_with_alt_range_by_set_valve_position(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
mqtt_mock_entry: MqttMockHAClientGenerator,
|
mqtt_mock_entry: MqttMockHAClientGenerator,
|
||||||
position: int,
|
position: int,
|
||||||
@ -894,7 +894,7 @@ async def test_controling_valve_with_alt_range_by_set_valve_position(
|
|||||||
(SERVICE_OPEN_VALVE, "127"),
|
(SERVICE_OPEN_VALVE, "127"),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
async def test_controling_valve_with_alt_range_by_position(
|
async def test_controlling_valve_with_alt_range_by_position(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
mqtt_mock_entry: MqttMockHAClientGenerator,
|
mqtt_mock_entry: MqttMockHAClientGenerator,
|
||||||
service: str,
|
service: str,
|
||||||
@ -955,7 +955,7 @@ async def test_controling_valve_with_alt_range_by_position(
|
|||||||
(SERVICE_OPEN_VALVE, "100", STATE_OPEN, 100),
|
(SERVICE_OPEN_VALVE, "100", STATE_OPEN, 100),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
async def test_controling_valve_by_position_optimistic(
|
async def test_controlling_valve_by_position_optimistic(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
mqtt_mock_entry: MqttMockHAClientGenerator,
|
mqtt_mock_entry: MqttMockHAClientGenerator,
|
||||||
service: str,
|
service: str,
|
||||||
@ -1014,7 +1014,7 @@ async def test_controling_valve_by_position_optimistic(
|
|||||||
(100, "127", 100, STATE_OPEN),
|
(100, "127", 100, STATE_OPEN),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
async def test_controling_valve_optimistic_alt_trange_by_set_valve_position(
|
async def test_controlling_valve_optimistic_alt_trange_by_set_valve_position(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
mqtt_mock_entry: MqttMockHAClientGenerator,
|
mqtt_mock_entry: MqttMockHAClientGenerator,
|
||||||
position: int,
|
position: int,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user