Skip to content

Commit

Permalink
Fix typo in wait_for_user_input (#34965)
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 authored Aug 14, 2024
1 parent 5e8a9ec commit 0ea43c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/python_testing/TC_CCTRL_2_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ async def test_TC_CCTRL_2_2(self):

self.step(12)
if not self.is_ci:
self.wait_for_use_input("Approve Commissioning approval request using manufacturer specified mechanism")
self.wait_for_user_input("Approve Commissioning approval request using manufacturer specified mechanism")

self.step(13)
if not events:
Expand Down Expand Up @@ -257,7 +257,7 @@ async def test_TC_CCTRL_2_2(self):

self.step(23)
if not self.is_ci:
self.wait_for_use_input("Approve Commissioning approval request using manufacturer specified mechanism")
self.wait_for_user_input("Approve Commissioning approval request using manufacturer specified mechanism")

self.step(24)
events = new_event
Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_MCORE_FS_1_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ async def test_TC_MCORE_FS_1_1(self):
await self.send_single_cmd(cmd, endpoint=dut_commissioning_control_endpoint)

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

if not events:
new_event = await self.default_controller.ReadEvent(nodeid=self.dut_node_id, events=event_path)
Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_MCORE_FS_1_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ async def test_TC_MCORE_FS_1_2(self):

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

0 comments on commit 0ea43c9

Please sign in to comment.