Skip to content

Commit 7b89990

Browse files
committed
Fix ImportError for CommissionDeviceTest in test_harness_client
CommissionDeviceTest has been moved from matter.testing.commissioning to matter.testing.CommissioningPreTest in the Matter SDK. The old path no longer exports this symbol, which causes --get-test-info to fail and the Python test list to be empty in the UI. Fixes #981
1 parent 0bef2f9 commit 7b89990

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

test_collections/matter/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ class MatterSettings(BaseSettings):
2323

2424
# SDK Docker Image
2525
SDK_DOCKER_IMAGE: str = "connectedhomeip/chip-cert-bins"
26-
SDK_DOCKER_TAG: str = "96b1d9b9415310d61c844466fe2e1338902f662d"
26+
SDK_DOCKER_TAG: str = "6feac778f196483b6355d35fc529f183b293b71f"
2727
# SDK SHA: used to fetch tests (YAML and Python) from SDK.
28-
SDK_SHA: str = "96b1d9b9415310d61c844466fe2e1338902f662d"
28+
SDK_SHA: str = "6feac778f196483b6355d35fc529f183b293b71f"
2929

3030
class Config:
3131
case_sensitive = True

test_collections/matter/sdk_tests/support/python_testing/models/rpc_client/test_harness_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from contextlib import redirect_stdout
2424
from multiprocessing.managers import BaseManager
2525

26-
from matter.testing.commissioning import CommissionDeviceTest
26+
from matter.testing.CommissioningPreTest import CommissionDeviceTest
2727
from matter.testing.matter_testing import MatterTestConfig
2828
from matter.testing.runner import (
2929
TestStep,

0 commit comments

Comments
 (0)