From 60466f86c8d4fc103ce87953b8d117d75f264fdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Wed, 26 Aug 2020 00:41:52 +0200 Subject: [PATCH] bug: fix tests --- bug/label_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bug/label_test.go b/bug/label_test.go index 225e13526c8695c71263224b524b7dd520a49f17..49401c4980c45b17b26d46cfd0557e190a3d51ba 100644 --- a/bug/label_test.go +++ b/bug/label_test.go @@ -7,22 +7,22 @@ import ( ) func TestLabelRGBA(t *testing.T) { - rgba := Label("test").Color() - expected := LabelColor{R: 255, G: 87, B: 34, A: 255} + rgba := Label("test1").Color() + expected := LabelColor{R: 0, G: 150, B: 136, A: 255} require.Equal(t, expected, rgba) } func TestLabelRGBASimilar(t *testing.T) { - rgba := Label("test1").Color() - expected := LabelColor{R: 0, G: 188, B: 212, A: 255} + rgba := Label("test2").Color() + expected := LabelColor{R: 3, G: 169, B: 244, A: 255} require.Equal(t, expected, rgba) } func TestLabelRGBAReverse(t *testing.T) { rgba := Label("tset").Color() - expected := LabelColor{R: 233, G: 30, B: 99, A: 255} + expected := LabelColor{R: 63, G: 81, B: 181, A: 255} require.Equal(t, expected, rgba) }