diff --git a/src/bitboard.rs b/src/bitboard.rs index 98a3509..562c896 100644 --- a/src/bitboard.rs +++ b/src/bitboard.rs @@ -86,9 +86,8 @@ mod test { let mut b = BitBoard::new(); for i in 0..BOARD_SIZE { for j in 0..BOARD_SIZE { - assert_eq!( - b.get(i, j), - false, + assert!( + !b.get(i, j), "A just-initalized BitBoard should be completely empty" ) }