Skip to content

Commit 720cb52

Browse files
committed
TC-LVL-2.3: Update expected number of reports
please see CHIP-Specifications/chip-test-plans#4456 (comment)
1 parent 339274a commit 720cb52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/python_testing/TC_LVL_2_3.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ def steps_TC_LVL_2_3(self) -> list[TestStep]:
5757
TestStep(7, f"{THcommand} MoveToLevelWithOnOff with Level field set to maxLevel, TransitionTime field set to 100 (10s) and remaining fields set to 0",
5858
test_plan_support.verify_success()),
5959
TestStep(8, "TH stores the reported values of CurrentLevel in all incoming reports for CurrentLevel attribute, that contains data in reportedCurrentLevelValuesList, over a period of 30 seconds."),
60-
TestStep(9, "TH verifies that reportedCurrentLevelValuesList does not contain more than 10 entries for CurrentLevel",
61-
"reportedCurrentLevelValuesList has 10 or less entries in the list"),
60+
TestStep(9, "TH verifies that reportedCurrentLevelValuesList does not contain more than 12 entries for CurrentLevel",
61+
"reportedCurrentLevelValuesList has 12 or fewer entries in the list"),
6262
TestStep(10, "If reportedCurrentLevelValuesList only contain a single entry, TH verifies the value of the entry is equal to maxLevel",
6363
"The entry in reportedCurrentLevelValuesList is equal to maxLevel"),
6464
TestStep(11, "If reportedCurrentLevelValuesList contains two or more entries, TH verifies the value of the first entry is larger than startCurrentLevel",
@@ -133,7 +133,7 @@ async def test_TC_LVL_2_3(self):
133133

134134
self.step(9)
135135
count = sub_handler.attribute_report_counts[lvl.Attributes.CurrentLevel]
136-
asserts.assert_less_equal(count, 10, "Received more than 10 reports for CurrentLevel")
136+
asserts.assert_less_equal(count, 12, "Received more than 12 reports for CurrentLevel")
137137
asserts.assert_greater(count, 0, "Did not receive any reports for CurrentLevel")
138138

139139
self.step(10)

0 commit comments

Comments
 (0)