mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 10:59:40 +00:00
Remove rfxtrx signal repetition (#67675)
This commit is contained in:
@@ -11,7 +11,7 @@ from tests.common import MockConfigEntry
|
||||
async def test_one_chime(hass, rfxtrx, timestep):
|
||||
"""Test with 1 entity."""
|
||||
entry_data = create_rfx_test_cfg(
|
||||
devices={"0a16000000000000000000": {"signal_repetitions": 1, "off_delay": 2.0}}
|
||||
devices={"0a16000000000000000000": {"off_delay": 2.0}}
|
||||
)
|
||||
mock_entry = MockConfigEntry(domain="rfxtrx", unique_id=DOMAIN, data=entry_data)
|
||||
|
||||
@@ -66,9 +66,7 @@ async def test_one_chime(hass, rfxtrx, timestep):
|
||||
|
||||
async def test_one_security1(hass, rfxtrx, timestep):
|
||||
"""Test with 1 entity."""
|
||||
entry_data = create_rfx_test_cfg(
|
||||
devices={"08200300a109000670": {"signal_repetitions": 1, "off_delay": 2.0}}
|
||||
)
|
||||
entry_data = create_rfx_test_cfg(devices={"08200300a109000670": {"off_delay": 2.0}})
|
||||
mock_entry = MockConfigEntry(domain="rfxtrx", unique_id=DOMAIN, data=entry_data)
|
||||
|
||||
mock_entry.add_to_hass(hass)
|
||||
|
||||
Reference in New Issue
Block a user