Skip to content

Commit

Permalink
fix csv line numbers in test assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Aug 31, 2024
1 parent 4fd70a3 commit f8373c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/horde_insufficient_material.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ fn white_insufficient_material_in_horde() {
"{} with comment {:?} in line {}",
record.fen,
record.comment,
i + 1
i + 2
);
}
}
2 changes: 1 addition & 1 deletion tests/zobrist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ fn test_zobrist_reference() {
pos.zobrist_hash::<Zobrist128>(EnPassantMode::Legal),
record.zobrist,
"line {}",
i + 1
i + 2
)
}
}

0 comments on commit f8373c5

Please sign in to comment.