Skip to content

Commit eeba970

Browse files
authored
TC_TCCM_1_2.py: Remove disallowed attribuzte checks (project-chip#38377)
The TCCM cluster have OnMode and StartupMode attributes as disallowed by specs and also testplans have removed checking for them (see https://github.com/CHIP-Specifications/chip-test-plans/blob/master/src/cluster/mode_ref_tcc.adoc#2-test-case-list), so also the tests should not test for it
1 parent b4e4b8e commit eeba970

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/python_testing/TC_TCCM_1_2.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -91,18 +91,6 @@ async def test_TC_TCCM_1_2(self):
9191
mode = self.cluster.Attributes.CurrentMode
9292
await self.read_and_check_mode(endpoint=endpoint, mode=mode, supported_modes=supported_modes)
9393

94-
self.step(4)
95-
# Verify that the OnMode attribute has a valid value or null.
96-
mode = self.cluster.Attributes.OnMode
97-
await self.read_and_check_mode(endpoint=endpoint, mode=mode,
98-
supported_modes=supported_modes, is_nullable=True)
99-
100-
self.step(5)
101-
# Verify that the StartUpMode has a valid value or null
102-
mode = self.cluster.Attributes.StartUpMode
103-
await self.read_and_check_mode(endpoint=endpoint, mode=mode,
104-
supported_modes=supported_modes, is_nullable=True)
105-
10694

10795
if __name__ == "__main__":
10896
default_matter_test_main()

0 commit comments

Comments
 (0)