@@ -165,29 +165,6 @@ def test_get_row_first_try(self, mock_input):
165165 actual : int = self .game .get_row ()
166166 self .assertEqual (expected , actual )
167167
168- @patch (f"{ IOCONSOLE_PATH } .get_integer_input" , side_effect = [0 , 1 ])
169- def test_get_row_second_try (self , mock_input ):
170- self .game .console .get_integer_input .side_effect = [0 , 1 ]
171-
172- expected : int = 1
173- expected_call_count : int = 2
174- actual = self .game .get_row ()
175- actual_call_count : int = self .game .console .get_integer_input .call_count
176-
177- self .assertEqual (expected , actual )
178- self .assertEqual (expected_call_count , actual_call_count )
179-
180- @patch (f"{ IOCONSOLE_PATH } .get_integer_input" , side_effect = [0 , 5 , 6 , 7 , 2 ])
181- def test_get_row_fifth_try (self , mock_input ):
182-
183- expected : int = 2
184- expected_call_count : int = 5
185- actual = self .game .get_row ()
186- actual_call_count : int = self .game .console .get_integer_input .call_count
187-
188- self .assertEqual (expected , actual )
189- self .assertEqual (expected_call_count , actual_call_count )
190-
191168 @patch (f"{ IOCONSOLE_PATH } .get_integer_input" , return_value = 1 )
192169 def test_get_col_first_try (self , mock_input ):
193170
0 commit comments