From 88a573ced32cc52cfe27189bf5b455d405e52fdf Mon Sep 17 00:00:00 2001 From: Jakub Latusek Date: Tue, 14 May 2024 10:50:01 +0200 Subject: [PATCH] Use code-wifi pairing method --- scripts/tests/chiptest/test_definition.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/tests/chiptest/test_definition.py b/scripts/tests/chiptest/test_definition.py index 067fbbedc2e9af..82d598b18f221d 100644 --- a/scripts/tests/chiptest/test_definition.py +++ b/scripts/tests/chiptest/test_definition.py @@ -378,7 +378,7 @@ def Run(self, runner, apps_register, paths: ApplicationPaths, pics_file: str, pairing_server_args = [] if tool_hci_number is not None: pairing_cmd = paths.chip_tool_with_python_cmd + [ - "pairing", "ble-wifi", TEST_NODE_ID, "Virtual_Wifi", "ExamplePassword", "20202021", "3840", ] + "pairing", "code-wifi", TEST_NODE_ID, "Virtual_Wifi", "ExamplePassword", "MT:-24J0AFN00KA0648G00"] pairing_server_args = [ "--ble-adapter", str(tool_hci_number)] else: @@ -406,6 +406,7 @@ def quoter(arg): return f"'{arg}'" if ' ' in arg else arg test_cmd, name='TEST', dependencies=[apps_register], timeout_seconds=timeout_seconds) + runner.capture_delegate.LogContents() except Exception: logging.error("!!!!!!!!!!!!!!!!!!!! ERROR !!!!!!!!!!!!!!!!!!!!!!")