We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d6912f commit 3e3d651Copy full SHA for 3e3d651
src/python_testing/TC_SC_4_3.py
@@ -17,7 +17,6 @@
17
18
import ipaddress
19
import logging
20
-import re
21
22
import chip.clusters as Clusters
23
from matter_testing_support import MatterBaseTest, async_test_body, default_matter_test_main
@@ -93,7 +92,7 @@ def verify_decimal_value(input_value, max_value: int):
93
92
if input_int <= max_value:
94
return (True, f"Input ({input_value}) is valid.")
95
else:
96
- return (False, f"Input ({input_value}) exceeds the allowed value {comparison_value}.")
+ return (False, f"Input ({input_value}) exceeds the allowed value {max_value}.")
97
except ValueError:
98
return (False, f"Input ({input_value}) is not a valid decimal number.")
99
0 commit comments