Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jtrejoespinoza-grid committed Jan 29, 2025
1 parent dfda658 commit 382c076
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python_testing/TC_REFALM_2_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,15 +152,15 @@ def _ask_for_closed_door(self):
self._send_close_door_commnad()
sleep(1)
else:
user_response = self.wait_for_user_input(prompt_msg=f"Ensure that the door on the DUT is closed.",
user_response = self.wait_for_user_input(prompt_msg="Ensure that the door on the DUT is closed.",
default_value="y")
asserts.assert_equal(user_response.lower(), "y")

def _ask_for_open_door(self):
if self.is_ci:
self._send_open_door_command()
else:
user_response = self.wait_for_user_input(prompt_msg=f"Manually open the door on the DUT. Enter 'y' or 'n' after completition",
user_response = self.wait_for_user_input(prompt_msg="Manually open the door on the DUT. Enter 'y' or 'n' after completition",
default_value="y")
asserts.assert_equal(user_response.lower(), "y")

Expand Down

0 comments on commit 382c076

Please sign in to comment.