Skip to content

Commit cde596c

Browse files
authored
Fix TC_TMP_2_1.py tolerance attribute check from PICS (project-chip#43250)
1 parent 7f6dd32 commit cde596c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/python_testing/TC_TMP_2_1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ async def test_TC_TMP_2_1(self):
107107
measured_value, max_bound, "Measured value is greater than max bound")
108108

109109
self.step(7)
110-
if self.pics_guard("TMP.S.A0003"):
110+
if self.pics_guard(self.check_pics("TMP.S.A0003")):
111111
tolerance = await self.read_single_attribute_check_success(cluster=cluster, attribute=attr.Tolerance)
112112
asserts.assert_greater_equal(tolerance, 0, "Tolerance is less than 0")
113113
asserts.assert_less_equal(tolerance, 2048, "Tolerance is greater than 2048")

0 commit comments

Comments
 (0)