Skip to content

Commit 0ea43c9

Browse files
authored
Fix typo in wait_for_user_input (project-chip#34965)
1 parent 5e8a9ec commit 0ea43c9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/python_testing/TC_CCTRL_2_2.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ async def test_TC_CCTRL_2_2(self):
182182

183183
self.step(12)
184184
if not self.is_ci:
185-
self.wait_for_use_input("Approve Commissioning approval request using manufacturer specified mechanism")
185+
self.wait_for_user_input("Approve Commissioning approval request using manufacturer specified mechanism")
186186

187187
self.step(13)
188188
if not events:
@@ -257,7 +257,7 @@ async def test_TC_CCTRL_2_2(self):
257257

258258
self.step(23)
259259
if not self.is_ci:
260-
self.wait_for_use_input("Approve Commissioning approval request using manufacturer specified mechanism")
260+
self.wait_for_user_input("Approve Commissioning approval request using manufacturer specified mechanism")
261261

262262
self.step(24)
263263
events = new_event

src/python_testing/TC_MCORE_FS_1_1.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ async def test_TC_MCORE_FS_1_1(self):
102102
await self.send_single_cmd(cmd, endpoint=dut_commissioning_control_endpoint)
103103

104104
if not self.is_ci:
105-
self.wait_for_use_input("Approve Commissioning approval request on DUT using manufacturer specified mechanism")
105+
self.wait_for_user_input("Approve Commissioning approval request on DUT using manufacturer specified mechanism")
106106

107107
if not events:
108108
new_event = await self.default_controller.ReadEvent(nodeid=self.dut_node_id, events=event_path)

src/python_testing/TC_MCORE_FS_1_2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ async def test_TC_MCORE_FS_1_2(self):
118118

119119
self.step(4)
120120
if not self.is_ci:
121-
self.wait_for_use_input(
121+
self.wait_for_user_input(
122122
"Commission TH_SED_DUT onto DUT_FSA’s fabric using the manufacturer specified mechanism. (ensure Synchronization is enabled.)")
123123
else:
124124
logging.info("Stopping after step 3 while running in CI to avoid manual steps.")

0 commit comments

Comments
 (0)