Fix test naming switch (#60630)

This commit is contained in:
Jan Bouwhuis 2021-11-30 15:45:06 +01:00 committed by GitHub
parent 6be1b0c704
commit cd351cf22b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -893,7 +893,7 @@ async def test_entity_category(hass, mqtt_mock):
await help_test_entity_category(hass, mqtt_mock, sensor.DOMAIN, DEFAULT_CONFIG)
async def test_value_template_with_entity_id(hass, mqtt_mock):
async def test_value_template_with_raw_data(hass, mqtt_mock):
"""Test processing a raw value via MQTT."""
assert await async_setup_component(
hass,
@ -922,7 +922,7 @@ async def test_value_template_with_entity_id(hass, mqtt_mock):
assert state.state == "16"
async def test_value_template_with_raw_data(hass, mqtt_mock):
async def test_value_template_with_entity_id(hass, mqtt_mock):
"""Test the access to attributes in value_template via the entity_id."""
assert await async_setup_component(
hass,