fix: adjust test

This commit is contained in:
J. Nick Koston 2023-12-12 13:58:55 -10:00
parent 5c75415c11
commit 72a9d4c23e
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -1641,9 +1641,9 @@ async def test_subscribe_bluetooth_le_raw_advertisements(
adv_groups = []
def on_raw_bluetooth_le_advertisements(
advs: list[BluetoothLERawAdvertisementsResponse],
advs: BluetoothLERawAdvertisementsResponse,
) -> None:
adv_groups.append(advs)
adv_groups.append(advs.advertisements)
unsub = await client.subscribe_bluetooth_le_raw_advertisements(
on_raw_bluetooth_le_advertisements