From 487b7d3cfd267556b10aa2815f08d8b34ebe219a Mon Sep 17 00:00:00 2001 From: Romulo Quidute Filho Date: Wed, 15 Jan 2025 12:34:07 +0000 Subject: [PATCH] Fix the checking for storage-path --- .../matter/sdk_tests/support/python_testing/models/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test_collections/matter/sdk_tests/support/python_testing/models/utils.py b/test_collections/matter/sdk_tests/support/python_testing/models/utils.py index b3b0a27b..ebfe1bbd 100644 --- a/test_collections/matter/sdk_tests/support/python_testing/models/utils.py +++ b/test_collections/matter/sdk_tests/support/python_testing/models/utils.py @@ -132,6 +132,7 @@ def __retrieve_storage_path(config: TestEnvironmentConfigMatter) -> Path: if ( config.test_parameters + and TEST_PARAMETER_STORAGE_PATH_KEY in config.test_parameters and config.test_parameters[TEST_PARAMETER_STORAGE_PATH_KEY] ): storage_path = Path(config.test_parameters[TEST_PARAMETER_STORAGE_PATH_KEY])