浏览代码

test: fix multiple devices cases fail on python3

He Yin Ling 6 年之前
父节点
当前提交
ca3b2a8909
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tools/unit-test-app/unit_test.py

+ 1 - 1
tools/unit-test-app/unit_test.py

@@ -344,7 +344,7 @@ class Handler(threading.Thread):
 
 
         def device_wait_action(data):
         def device_wait_action(data):
             start_time = time.time()
             start_time = time.time()
-            expected_signal = data[0]
+            expected_signal = data[0].encode('utf-8')
             while 1:
             while 1:
                 if time.time() > start_time + self.timeout:
                 if time.time() > start_time + self.timeout:
                     Utility.console_log("Timeout in device for function: %s" % self.child_case_name, color="orange")
                     Utility.console_log("Timeout in device for function: %s" % self.child_case_name, color="orange")