Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
johndoknjas committed Aug 27, 2024
1 parent b1f54f7 commit 80b7412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/stockfish/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_get_best_move_remaining_time_not_first_move(self, stockfish: Stockfish)
assert best_move in ("d2d4", "a2a3", "d1e2", "b1c3")
best_move = stockfish.get_best_move(btime=1000)
if best_move not in (["d2d4", "b1c3"]):
assert major_version == -1
assert stockfish._version == {}
best_move = stockfish.get_best_move(wtime=1000, btime=1000)
assert best_move in ("d2d4", "b1c3", "g1f3")
best_move = stockfish.get_best_move(wtime=5 * 60 * 1000, btime=1000)
Expand Down

0 comments on commit 80b7412

Please sign in to comment.