tests/multi_bluetooth/ble_gap_advertise: Fix bytes/str compare warning.
This commit is contained in:
parent
f588138bbe
commit
9b06efb943
|
@ -42,7 +42,7 @@ def instance1():
|
|||
adv_data = bytes(data[4])
|
||||
else:
|
||||
if adv_data != data[4]:
|
||||
adv_data = "MISMATCH"
|
||||
adv_data = b"MISMATCH"
|
||||
elif ev == _IRQ_SCAN_COMPLETE:
|
||||
finished = True
|
||||
|
||||
|
|
Loading…
Reference in New Issue