diff --git a/tests/logitech_receiver/test_notifications.py b/tests/logitech_receiver/test_notifications.py index 2dbef6ee19..aba2ebda3f 100644 --- a/tests/logitech_receiver/test_notifications.py +++ b/tests/logitech_receiver/test_notifications.py @@ -29,8 +29,8 @@ def request(self, handle, devnumber, request_id, *params, **kwargs): @pytest.mark.parametrize( "sub_id, notification_data, expected_error, expected_new_device", [ - (Registers.DISCOVERY_STATUS_NOTIFICATION, b'\x01', "device_timeout", None), - (Registers.PAIRING_STATUS_NOTIFICATION, b'\x02', "failed", None), + (Registers.DISCOVERY_STATUS_NOTIFICATION, b"\x01", "device_timeout", None), + (Registers.PAIRING_STATUS_NOTIFICATION, b"\x02", "failed", None), ] ) def test_process_receiver_notification_bolt_pairing_error(sub_id, notification_data, expected_error, expected_new_device):