diff options
Diffstat (limited to 'alacritty_terminal/src/grid/tests.rs')
-rw-r--r-- | alacritty_terminal/src/grid/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty_terminal/src/grid/tests.rs b/alacritty_terminal/src/grid/tests.rs index ce094b96..a352e747 100644 --- a/alacritty_terminal/src/grid/tests.rs +++ b/alacritty_terminal/src/grid/tests.rs @@ -21,7 +21,7 @@ use crate::term::cell::{Cell, Flags}; impl GridCell for usize { fn is_empty(&self) -> bool { - false + *self == 0 } fn is_wrap(&self) -> bool { |