diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-08-01 14:26:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-01 14:26:55 +0000 |
commit | f51c7b067a05dec7863cca9b8bfaf8329b0cfdfc (patch) | |
tree | 4a140de556b4b93f142d57c56a9d74edfe563211 /alacritty_terminal/tests | |
parent | 28b726cbfa9788bd563ea7a04212f917cc9341f2 (diff) | |
download | alacritty-f51c7b067a05dec7863cca9b8bfaf8329b0cfdfc.tar.gz alacritty-f51c7b067a05dec7863cca9b8bfaf8329b0cfdfc.zip |
Remove color from log output
Fixes #2474.
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, ); } } |