Use better names for zwave_js platforms that are self describing (#46083)

* use better names for platforms that are self describing

* add missing light change

* fix tests

* only use value_name in sensors and binary_sensors
This commit is contained in:
Raman Gupta 2021-02-06 05:08:25 -06:00 committed by GitHub
parent ee98ea89dd
commit af4e6f856f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 50 additions and 22 deletions

View file

@ -12,8 +12,8 @@ from homeassistant.components.light import (
)
from homeassistant.const import ATTR_SUPPORTED_FEATURES, STATE_OFF, STATE_ON
BULB_6_MULTI_COLOR_LIGHT_ENTITY = "light.bulb_6_multi_color_current_value"
EATON_RF9640_ENTITY = "light.allloaddimmer_current_value"
BULB_6_MULTI_COLOR_LIGHT_ENTITY = "light.bulb_6_multi_color"
EATON_RF9640_ENTITY = "light.allloaddimmer"
async def test_light(hass, client, bulb_6_multi_color, integration):