Skip to content

Commit 5a87f32

Browse files
Update src/python_testing/TC_DGWIFI_2_3.py
Co-authored-by: Andrei Litvin <andy314@gmail.com>
1 parent 2b6b0a2 commit 5a87f32

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/python_testing/TC_DGWIFI_2_3.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,12 @@ async def send_reset_counts_command(self, endpoint):
6060
async def read_attribute_and_validate(self, endpoint, attribute, validation_func, field_name):
6161
"""Reads an attribute and validates it using the provided function."""
6262
value = await self.read_single_attribute_check_success(endpoint=endpoint, cluster=Clusters.Objects.WiFiNetworkDiagnostics, attribute=attribute)
63-
if value is not None:
64-
asserts.assert_true(isinstance(value, Nullable), f"{field_name} must be of type 'Nullable' when not None.")
65-
if value != NullValue:
66-
asserts.assert_true(validation_func(value.Value), f"{field_name} has an invalid value: {value.Value}")
63+
if value is None:
64+
return
65+
asserts.assert_true(isinstance(value, Nullable), f"{field_name} must be of type 'Nullable' when not None.")
66+
if value == NullValue:
67+
return
68+
asserts.assert_true(validation_func(value.Value), f"{field_name} has an invalid value: {value.Value}")
6769

6870
def desc_TC_DGWIFI_2_3(self) -> str:
6971
"""Returns a description of this test."""

0 commit comments

Comments
 (0)