1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Drop UNIT_ prefix for percentage constant (#39383)

This commit is contained in:
springstan
2020-09-05 21:09:14 +02:00
committed by GitHub
parent cdc93d7110
commit d2b1918e9c
183 changed files with 639 additions and 661 deletions

View File

@@ -1,7 +1,7 @@
"""The sensor tests for the powerwall platform."""
from homeassistant.components.powerwall.const import DOMAIN
from homeassistant.const import UNIT_PERCENTAGE
from homeassistant.const import PERCENTAGE
from homeassistant.setup import async_setup_component
from .mocks import _mock_get_config, _mock_powerwall_with_fixtures
@@ -104,7 +104,7 @@ async def test_sensors(hass):
state = hass.states.get("sensor.powerwall_charge")
assert state.state == "47"
expected_attributes = {
"unit_of_measurement": UNIT_PERCENTAGE,
"unit_of_measurement": PERCENTAGE,
"friendly_name": "Powerwall Charge",
"device_class": "battery",
}