Add and use percentage constant (#32094)
* Add and use percentage constant * Fix pylint error and broken test
This commit is contained in:
parent
c7f128f286
commit
f1a0ca7cd3
155 changed files with 735 additions and 459 deletions
|
@ -9,6 +9,7 @@ from homeassistant.const import (
|
|||
ATTR_ATTRIBUTION,
|
||||
DEVICE_CLASS_HUMIDITY,
|
||||
DEVICE_CLASS_TEMPERATURE,
|
||||
UNIT_PERCENTAGE,
|
||||
)
|
||||
|
||||
|
||||
|
@ -168,7 +169,7 @@ def test_sensor_icon(temperature_sensor):
|
|||
def test_unit_of_measure(default_sensor, battery_sensor):
|
||||
"""Test the unit_of_measurement property."""
|
||||
assert default_sensor.unit_of_measurement is None
|
||||
assert battery_sensor.unit_of_measurement == "%"
|
||||
assert battery_sensor.unit_of_measurement == UNIT_PERCENTAGE
|
||||
|
||||
|
||||
def test_device_class(default_sensor, temperature_sensor, humidity_sensor):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue