ci: all jobs use python3 by default

This commit is contained in:
Chen Yu Dong
2020-11-11 11:31:17 +08:00
committed by bot
parent 2558830339
commit 454edcc0a8
17 changed files with 36 additions and 41 deletions

View File

@@ -89,7 +89,7 @@ def bleprph_client_task(prph_obj, dut, dut_addr):
- write 'A' to characteristic with write permission
'''
chars_ret_on_write = {}
chars_ret_on_write = ble_client_obj.write_chars('A')
chars_ret_on_write = ble_client_obj.write_chars(b'A')
if chars_ret_on_write:
Utility.console_log("\nCharacteristics after write operation")
for path, props in chars_ret_on_write.items():