From 6967f4686d19bc64bd8a367d035393f4013c2b63 Mon Sep 17 00:00:00 2001 From: Romulo Quidute Filho Date: Thu, 3 Oct 2024 20:56:29 +0000 Subject: [PATCH] Allow wifi ssid with spaces --- test_collections/matter/test_environment_config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test_collections/matter/test_environment_config.py b/test_collections/matter/test_environment_config.py index 5e34a410..6edf9bac 100644 --- a/test_collections/matter/test_environment_config.py +++ b/test_collections/matter/test_environment_config.py @@ -36,6 +36,10 @@ class WiFiConfig(BaseModel): ssid: str password: str + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.ssid = f"\"{self.ssid}\"" + class ThreadExternalConfig(BaseModel): operational_dataset_hex: str