From 6c6e391da065d9731c18b4e484e131d7beac5579 Mon Sep 17 00:00:00 2001 From: johndoknjas Date: Wed, 28 Aug 2024 19:58:13 -0700 Subject: [PATCH] remove `is_move_correct` calls --- tests/stockfish/test_models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/stockfish/test_models.py b/tests/stockfish/test_models.py index 8cdc35d..6abaff4 100644 --- a/tests/stockfish/test_models.py +++ b/tests/stockfish/test_models.py @@ -38,9 +38,7 @@ def test_constructor_options(self): @pytest.mark.slow def test_get_best_move_remaining_time_not_first_move(self, stockfish: Stockfish): - stockfish.is_move_correct("e2e4") stockfish.set_fen_position("rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq - 0 1", False) - stockfish.is_move_correct("e7e6") stockfish.set_fen_position("rnbqkbnr/pppp1ppp/4p3/8/4P3/8/PPPP1PPP/RNBQKBNR w KQkq - 0 2", False) best_move = stockfish.get_best_move(wtime=1000) assert best_move in ("d2d4", "a2a3", "d1e2", "b1c3")