From f51c7b067a05dec7863cca9b8bfaf8329b0cfdfc Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Thu, 1 Aug 2019 14:26:55 +0000 Subject: Remove color from log output Fixes #2474. --- alacritty_terminal/tests/ref.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'alacritty_terminal/tests') 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, ); } } -- cgit v1.2.3-54-g00ecf