diff options
| author | Jim Mussared | 2020-04-07 15:59:16 +1000 |
|---|---|---|
| committer | Damien George | 2020-04-29 16:45:46 +1000 |
| commit | 9b06efb94306b127782ebefc6d85a3a12d82d307 (patch) | |
| tree | 69882846f82a6a6fa76fc6f001afcf45931f5d41 /tests | |
| parent | f588138bbe0dd25b413377b126ad395a5f6add2d (diff) | |
tests/multi_bluetooth/ble_gap_advertise: Fix bytes/str compare warning.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/multi_bluetooth/ble_gap_advertise.py | 2 |
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 |
