From 5cb93fb21170b3f4b4758354b0841e61d5be3ffc Mon Sep 17 00:00:00 2001 From: Joakim Plate Date: Thu, 1 Aug 2024 17:40:21 +0200 Subject: [PATCH] Drop caplog checks --- tests/test_device.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/test_device.py b/tests/test_device.py index 4e97bd28f..cff04ba71 100644 --- a/tests/test_device.py +++ b/tests/test_device.py @@ -616,7 +616,6 @@ async def test_async_add_to_group_remove_from_group( async def test_async_bind_to_group( device_joined: Callable[[ZigpyDevice], Awaitable[Device]], zigpy_device: Callable[..., ZigpyDevice], # pylint: disable=redefined-outer-name - caplog: pytest.LogCaptureFixture, ) -> None: """Test async_bind_to_group method.""" zigpy_dev = zigpy_device(with_basic_cluster_handler=True) @@ -640,19 +639,12 @@ async def test_async_bind_to_group( group.group_id, [ClusterBinding(name="on_off", type=CLUSTER_TYPE_OUT, id=6, endpoint_id=3)], ) - assert ( - "0xb79c: Bind_req 00:0d:7f:00:0a:90:69:e8, ep: 3, cluster: 6 to group: 0x1001 completed: []" - in caplog.text - ) await zha_device_remote.async_unbind_from_group( group.group_id, [ClusterBinding(name="on_off", type=CLUSTER_TYPE_OUT, id=6, endpoint_id=3)], ) - m1 = "0xb79c: Unbind_req 00:0d:7f:00:0a:90:69:e8, ep: 3, cluster: 6" - assert f"{m1} to group: 0x1001 completed: []" in caplog.text - async def test_device_automation_triggers( device_joined: Callable[[ZigpyDevice], Awaitable[Device]],