tests/multi_bluetooth/ble_gap_advertise: Fix bytes/str compare warning.

v1.13-wasp-os
Jim Mussared 2020-04-07 15:59:16 +10:00 committed by Damien George
parent f588138bbe
commit 9b06efb943
1 changed files with 1 additions and 1 deletions

View File

@ -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