...
 
Commits (2)
    https://gitcode.net/openharmony/test_xdevice/-/commit/0560a7b25dbc6584831fa3880dd6f231b393fbc3 fix LTPPosixDriver error bug 2022-10-26T16:26:21+08:00 deveco_xdevice liguangjie1@huawei.com Signed-off-by: <span data-trailer="Signed-off-by:"><a href="mailto:liguangjie1@huawei.com" title="liguangjie1@huawei.com"></a><a href="javascript:void(0)" class="avatar s16 avatar-inline identicon bg5" style="text-decoration: none">N</a><a href="mailto:liguangjie1@huawei.com" title="liguangjie1@huawei.com">deveco_xdevice</a> &lt;<a href="mailto:liguangjie1@huawei.com" title="liguangjie1@huawei.com">liguangjie1@huawei.com</a>&gt;</span> https://gitcode.net/openharmony/test_xdevice/-/commit/a72759eed6bab0ebe8c27c798fc92058a50e3a88 !1 fix LTPPosixDriver error bug 2022-10-27T03:43:01+00:00 openharmony_ci 120357966@qq.com Merge pull request !1 from liguangjie/OpenHarmony-3.2-Beta3
......@@ -62,7 +62,7 @@ class ShellHandler:
return lines[:-1]
def add_process_method(self, func):
if not isinstance(func, types.FunctionType):
if isinstance(func, types.FunctionType):
self.process_output_methods.clear()
self.process_output_methods.append(func)
......