Skip to content

Commit

Permalink
refactoring(logitech_receiver/notifications): fix pre-commits
Browse files Browse the repository at this point in the history
  • Loading branch information
rloutrel committed Oct 13, 2024
1 parent 01f5650 commit 6af7369
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/logitech_receiver/test_notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 6af7369

Please sign in to comment.