Skip to content

Commit

Permalink
primitive/train_angle: fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlettman committed Aug 16, 2024
1 parent f4b0af4 commit ae21592
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types/primitive/train_angle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ mod tests {

const BINARY_ENDIAN: Endian = Endian::Big;
const BINARY_CASES: [(u16, [u8; 1]); 4] = [
(0, [0]), // 0° (0 * 3)
(3, [1]), // 3° (1 * 3)
(180, [60]), // 180° (60 * 3)
(0, [0]), // 0° (0 * 3)
(3, [1]), // 3° (1 * 3)
(180, [60]), // 180° (60 * 3)
(360, [120]), // 360° (120 * 3)
];

Expand Down

0 comments on commit ae21592

Please sign in to comment.