Skip to content

Commit

Permalink
change test rules to doesn't match round
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Aug 3, 2024
1 parent 41a4d75 commit 1dc7faf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontends/rioterm/src/mouse/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ pub mod test {
margin_y_top,
(cell_dimension_width, cell_dimension_height),
);
assert_eq!(pos, Pos::new(Line(0), Column(0)));
assert_eq!(pos, Pos::new(Line(0), Column(1)));

let mouse = Mouse {
x: 23,
Expand Down Expand Up @@ -581,7 +581,7 @@ pub mod test {
margin_y_top,
(cell_dimension_width, cell_dimension_height),
);
assert_eq!(pos, Pos::new(Line(0), Column(1)));
assert_eq!(pos, Pos::new(Line(0), Column(2)));

let mouse = Mouse {
x: 36,
Expand Down

0 comments on commit 1dc7faf

Please sign in to comment.