1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2025-11-06 22:44:18 -05:00

Remove color from log output

Fixes #2474.
This commit is contained in:
Christian Duerr 2019-08-01 14:26:55 +00:00 committed by GitHub
parent 28b726cbfa
commit f51c7b067a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 42 deletions

View file

@ -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,
);
}
}