aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-08-26 00:41:52 +0200
committerMichael Muré <batolettre@gmail.com>2020-08-26 00:41:52 +0200
commit60466f86c8d4fc103ce87953b8d117d75f264fdf (patch)
tree510666a19f692460be1a7c69aad518cd17e4858f
parent47ea66f60232d08d43cefaaa7fc9551dadeae71c (diff)
downloadgit-bug-60466f86c8d4fc103ce87953b8d117d75f264fdf.tar.gz
bug: fix tests
-rw-r--r--bug/label_test.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/bug/label_test.go b/bug/label_test.go
index 225e1352..49401c49 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)
}