diff options
Diffstat (limited to 'alacritty_terminal/src/vi_mode.rs')
-rw-r--r-- | alacritty_terminal/src/vi_mode.rs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/alacritty_terminal/src/vi_mode.rs b/alacritty_terminal/src/vi_mode.rs index 53534f73..3959494f 100644 --- a/alacritty_terminal/src/vi_mode.rs +++ b/alacritty_terminal/src/vi_mode.rs @@ -407,15 +407,7 @@ mod tests { } fn term() -> Term<Mock> { - let size = SizeInfo { - width: 20., - height: 20., - cell_width: 1.0, - cell_height: 1.0, - padding_x: 0.0, - padding_y: 0.0, - dpr: 1.0, - }; + let size = SizeInfo::new(20., 20., 1.0, 1.0, 0.0, 0.0, false); Term::new(&MockConfig::default(), size, Mock) } |