aboutsummaryrefslogtreecommitdiff
path: root/tests/multi_bluetooth
diff options
context:
space:
mode:
authorJim Mussared2020-04-07 15:59:16 +1000
committerDamien George2020-04-29 16:45:46 +1000
commit9b06efb94306b127782ebefc6d85a3a12d82d307 (patch)
tree69882846f82a6a6fa76fc6f001afcf45931f5d41 /tests/multi_bluetooth
parentf588138bbe0dd25b413377b126ad395a5f6add2d (diff)
tests/multi_bluetooth/ble_gap_advertise: Fix bytes/str compare warning.
Diffstat (limited to 'tests/multi_bluetooth')
-rw-r--r--tests/multi_bluetooth/ble_gap_advertise.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/multi_bluetooth/ble_gap_advertise.py b/tests/multi_bluetooth/ble_gap_advertise.py
index dacb43133..644b1fe28 100644
--- a/tests/multi_bluetooth/ble_gap_advertise.py
+++ b/tests/multi_bluetooth/ble_gap_advertise.py
@@ -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