diff --git a/tests/stockfish/test_models.py b/tests/stockfish/test_models.py index c63eff0..c2171aa 100644 --- a/tests/stockfish/test_models.py +++ b/tests/stockfish/test_models.py @@ -11,8 +11,6 @@ def send_command(process, command: str): process.stdin.write(command + "\n") process.stdin.flush() lines = [] - if command.startswith("position fen"): - return [] while True: line = process.stdout.readline() lines.append(line)