diff options
Diffstat (limited to 'alacritty_terminal/tests')
-rw-r--r-- | alacritty_terminal/tests/ref.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/alacritty_terminal/tests/ref.rs b/alacritty_terminal/tests/ref.rs index 91c0b6ee..fb87adb1 100644 --- a/alacritty_terminal/tests/ref.rs +++ b/alacritty_terminal/tests/ref.rs @@ -13,7 +13,6 @@ use alacritty_terminal::index::Column; use alacritty_terminal::message_bar::MessageBuffer; use alacritty_terminal::term::cell::Cell; use alacritty_terminal::term::SizeInfo; -use alacritty_terminal::util::fmt::{Green, Red}; use alacritty_terminal::Grid; use alacritty_terminal::Term; @@ -116,8 +115,8 @@ fn ref_test(dir: &Path) { "[{i}][{j}] {original:?} => {now:?}", i = i, j = j, - original = Green(original_cell), - now = Red(cell) + original = original_cell, + now = cell, ); } } |