From d6ede56b81f7e28d1cc13fda680deb0b6152c15c Mon Sep 17 00:00:00 2001 From: "Zhibin (Ryan) Wen" Date: Wed, 1 Apr 2026 12:18:03 +0800 Subject: [PATCH] examples: relax expected log patterns for C2, C3 and H2 tests Follow-up of commit ac23b46bdeacd9b0fc5a1b1ab754e6ecf613c1d7 Signed-off-by: Zhibin (Ryan) Wen --- examples/pytest_esp_matter_light.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/pytest_esp_matter_light.py b/examples/pytest_esp_matter_light.py index f8c38a169..08ec20c90 100644 --- a/examples/pytest_esp_matter_light.py +++ b/examples/pytest_esp_matter_light.py @@ -41,7 +41,7 @@ PYTEST_PASSPHRASE = gitlab_api.ci_gitlab_pytest_passphrase def test_matter_commissioning_c3(dut:Dut) -> None: light = dut # BLE start advertising - light.expect(r'chip\[DL\]\: Configuring CHIPoBLE advertising', timeout=20) + light.expect(r'Configuring CHIPoBLE advertising', timeout=20) # Start commissioning time.sleep(5) command = CHIP_TOOL_EXE + f" pairing ble-wifi 1 {PYTEST_SSID} {PYTEST_PASSPHRASE} 20202021 3840" @@ -80,7 +80,7 @@ def test_matter_commissioning_c3(dut:Dut) -> None: def test_matter_commissioning_c2(dut:Dut) -> None: light = dut # BLE start advertising - light.expect(r'chip\[DL\]\: Configuring CHIPoBLE advertising', timeout=20) + light.expect(r'Configuring CHIPoBLE advertising', timeout=20) # Start commissioning time.sleep(5) command = CHIP_TOOL_EXE + f" pairing ble-wifi 1 {PYTEST_SSID} {PYTEST_PASSPHRASE} 20202021 3840" @@ -252,8 +252,8 @@ def test_matter_commissioning_h2(dut:Tuple[Dut, Dut]) -> None: # For matter over thread commissioning need to reset host interface fixture_Init_interface() # BLE start advertising - light.expect(r'chip\[DL\]\: Configuring CHIPoBLE advertising', timeout=20) - ot_br.expect(r'chip\[DL\]\: Configuring CHIPoBLE advertising', timeout=20) + light.expect(r'Configuring CHIPoBLE advertising', timeout=20) + ot_br.expect(r'Configuring CHIPoBLE advertising', timeout=20) # Start commissioning OTBR time.sleep(2) command = CHIP_TOOL_EXE + f" pairing ble-wifi 1 {PYTEST_SSID} {PYTEST_PASSPHRASE} 20202021 3584"