File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -152,15 +152,15 @@ def _ask_for_closed_door(self):
152
152
self ._send_close_door_commnad ()
153
153
sleep (1 )
154
154
else :
155
- user_response = self .wait_for_user_input (prompt_msg = f "Ensure that the door on the DUT is closed." ,
155
+ user_response = self .wait_for_user_input (prompt_msg = "Ensure that the door on the DUT is closed." ,
156
156
default_value = "y" )
157
157
asserts .assert_equal (user_response .lower (), "y" )
158
158
159
159
def _ask_for_open_door (self ):
160
160
if self .is_ci :
161
161
self ._send_open_door_command ()
162
162
else :
163
- user_response = self .wait_for_user_input (prompt_msg = f "Manually open the door on the DUT. Enter 'y' or 'n' after completition" ,
163
+ user_response = self .wait_for_user_input (prompt_msg = "Manually open the door on the DUT. Enter 'y' or 'n' after completition" ,
164
164
default_value = "y" )
165
165
asserts .assert_equal (user_response .lower (), "y" )
166
166
You can’t perform that action at this time.
0 commit comments