bug: fix tests

Michael Muré created

Change summary

bug/label_test.go | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

Detailed changes

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)
 }