Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
Using the GitHub editor for these.
  • Loading branch information
khoover authored Oct 14, 2024
1 parent fb107cd commit bd2cfde
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/local/room_coordinate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,10 @@ mod test {

for i in 0..ROOM_SIZE {
let coord = RoomCoordinate::new(i).unwrap();
assert!(base[coord].iter().copied().all(|val| val == i as u16 * ROOM_SIZE as u16));
assert!(base[coord]
.iter()
.copied()
.all(|val| val == i as u16 * ROOM_SIZE as u16);
for j in 0..ROOM_USIZE {
base[coord][j] += j as u16;
}
Expand Down

0 comments on commit bd2cfde

Please sign in to comment.