Skip to content

Commit

Permalink
fix: Small test fix because of modifiers size change
Browse files Browse the repository at this point in the history
  • Loading branch information
gabyx committed Jul 24, 2024
1 parent 94591fb commit 9018bdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion termwiz/src/escape/csi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ fn csi_size() {
assert_eq!(std::mem::size_of::<Cursor>(), 12);
assert_eq!(std::mem::size_of::<Edit>(), 8);
assert_eq!(std::mem::size_of::<Mode>(), 24);
assert_eq!(std::mem::size_of::<MouseReport>(), 8);
assert_eq!(std::mem::size_of::<MouseReport>(), 12);
assert_eq!(std::mem::size_of::<Window>(), 40);
assert_eq!(std::mem::size_of::<Keyboard>(), 8);
assert_eq!(std::mem::size_of::<CSI>(), 32);
Expand Down

0 comments on commit 9018bdc

Please sign in to comment.