diff --git a/app/headless/backend_test.go b/app/headless/backend_test.go index 891ad2aa..0a2bf7cf 100644 --- a/app/headless/backend_test.go +++ b/app/headless/backend_test.go @@ -107,7 +107,7 @@ func TestFramebuffers(t *testing.T) { fbo1 := newFBO(t, b, sz) fbo2 := newFBO(t, b, sz) var ( - col1 = color.NRGBA{R: 0xad, G: 0xbe, B: 0xef, A: 0xde} + col1 = color.NRGBA{R: 0xac, G: 0xbe, B: 0xef, A: 0xde} col2 = color.NRGBA{R: 0xfe, G: 0xba, B: 0xbe, A: 0xca} ) fcol1, fcol2 := f32color.LinearFromSRGB(col1), f32color.LinearFromSRGB(col2) diff --git a/internal/rendertest/util_test.go b/internal/rendertest/util_test.go index 591dd0ab..6a3a1647 100644 --- a/internal/rendertest/util_test.go +++ b/internal/rendertest/util_test.go @@ -188,7 +188,7 @@ func close(b1, b2 uint8) bool { b1, b2 = b2, b1 } diff := b2 - b1 - return diff < 10 + return diff < 16 } func (r result) expect(x, y int, col color.RGBA) {