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:
@@ -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",
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user