[board] Fix the shape_into_char test

This commit is contained in:
Eryn Wells 2024-01-15 17:18:18 -08:00
parent e9607573c2
commit 98fce9acde

View file

@ -262,6 +262,6 @@ mod tests {
#[test]
fn shape_into_char() {
assert_eq!(<Shape as Into<char>>::into(Shape::Pawn) as char, 'p');
assert_eq!(<Shape as Into<char>>::into(Shape::Pawn) as char, 'P');
}
}