From ac23b46bdeacd9b0fc5a1b1ab754e6ecf613c1d7 Mon Sep 17 00:00:00 2001 From: Shubham Patil Date: Fri, 21 Nov 2025 17:52:54 +0530 Subject: [PATCH] examples: fix the expected log for C6 tests --- examples/pytest_esp_matter_light.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pytest_esp_matter_light.py b/examples/pytest_esp_matter_light.py index a22640d8d..229b55564 100644 --- a/examples/pytest_esp_matter_light.py +++ b/examples/pytest_esp_matter_light.py @@ -119,7 +119,7 @@ def test_matter_commissioning_c2(dut:Dut) -> None: def test_matter_commissioning_c6(dut:Dut, certification_tests: str) -> 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"