Skip to content

Commit

Permalink
f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
johndoknjas committed Aug 29, 2024
1 parent 6fbb439 commit 3c277d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/stockfish/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def test_sf_process(self):
wtime_lines = send_command(process, "go wtime 1000")
btime_lines = send_command(process, "go btime 1000")
send_command(process, "quit")
assert any(x.startswith('bestmove {move}') for move in ('d2d4', 'b1c3') for x in wtime_lines)
assert any(x.startswith('bestmove {move}') for move in ('d2d4', 'b1c3') for x in btime_lines)
assert any(x.startswith(f'bestmove {move}') for move in ('d2d4', 'b1c3') for x in wtime_lines)
assert any(x.startswith(f'bestmove {move}') for move in ('d2d4', 'b1c3') for x in btime_lines)


0 comments on commit 3c277d7

Please sign in to comment.