mirror of
https://github.com/home-assistant/core.git
synced 2026-04-27 12:14:35 +01:00
Rename BinarySensorDevice to BinarySensorEntity (#34462)
* Rename BinarySensorDevice to BinarySensorEntity * Tweak * Move deprecation warning to __new__, add test * Move deprecation warning back to __init__ * Move deprecation warning to __init_subclass
This commit is contained in:
@@ -3,7 +3,7 @@ Provide a mock binary sensor platform.
|
||||
|
||||
Call init before using it in your tests to ensure clean test data.
|
||||
"""
|
||||
from homeassistant.components.binary_sensor import DEVICE_CLASSES, BinarySensorDevice
|
||||
from homeassistant.components.binary_sensor import DEVICE_CLASSES, BinarySensorEntity
|
||||
|
||||
from tests.common import MockEntity
|
||||
|
||||
@@ -36,7 +36,7 @@ async def async_setup_platform(
|
||||
async_add_entities_callback(list(ENTITIES.values()))
|
||||
|
||||
|
||||
class MockBinarySensor(MockEntity, BinarySensorDevice):
|
||||
class MockBinarySensor(MockEntity, BinarySensorEntity):
|
||||
"""Mock Binary Sensor class."""
|
||||
|
||||
@property
|
||||
|
||||
Reference in New Issue
Block a user