From 5979564483dddd0ad1b3f0d19cdb1380197404fe Mon Sep 17 00:00:00 2001 From: Sean Smith Date: Wed, 4 Sep 2019 22:20:48 -0400 Subject: [PATCH] Update test case for default color Tcell's default is default, so using that changes the tests --- wtf/colors_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wtf/colors_test.go b/wtf/colors_test.go index 7ac90839..4e0d1e29 100644 --- a/wtf/colors_test.go +++ b/wtf/colors_test.go @@ -49,12 +49,12 @@ func Test_ColorFor(t *testing.T) { { name: "with no label", label: "", - expected: tcell.ColorGreen, + expected: tcell.ColorDefault, }, { name: "with missing label", label: "cat", - expected: tcell.ColorGreen, + expected: tcell.ColorDefault, }, { name: "with defined label",