From 98fce9acde41488ac55608b3fbc17e743b148ebd Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Mon, 15 Jan 2024 17:18:18 -0800 Subject: [PATCH] [board] Fix the shape_into_char test --- board/src/piece.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/src/piece.rs b/board/src/piece.rs index 5d8fc8a..e3614f4 100644 --- a/board/src/piece.rs +++ b/board/src/piece.rs @@ -262,6 +262,6 @@ mod tests { #[test] fn shape_into_char() { - assert_eq!(>::into(Shape::Pawn) as char, 'p'); + assert_eq!(>::into(Shape::Pawn) as char, 'P'); } }