1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 04:50:05 +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

@@ -5,7 +5,7 @@ from unittest.mock import patch
import pytest
from homeassistant.components.spaceapi import DOMAIN, SPACEAPI_VERSION, URL_API_SPACEAPI
from homeassistant.const import TEMP_CELSIUS, UNIT_PERCENTAGE
from homeassistant.const import PERCENTAGE, TEMP_CELSIUS
from homeassistant.setup import async_setup_component
from tests.common import mock_coro
@@ -64,7 +64,7 @@ SENSOR_OUTPUT = {
{"location": "Home", "name": "temp2", "unit": TEMP_CELSIUS, "value": "23"},
],
"humidity": [
{"location": "Home", "name": "hum1", "unit": UNIT_PERCENTAGE, "value": "88"}
{"location": "Home", "name": "hum1", "unit": PERCENTAGE, "value": "88"}
],
}
@@ -82,7 +82,7 @@ def mock_client(hass, hass_client):
"test.temp2", 23, attributes={"unit_of_measurement": TEMP_CELSIUS}
)
hass.states.async_set(
"test.hum1", 88, attributes={"unit_of_measurement": UNIT_PERCENTAGE}
"test.hum1", 88, attributes={"unit_of_measurement": PERCENTAGE}
)
return hass.loop.run_until_complete(hass_client())