From a9464c7d71860dbeeb30ac7667a60a2cb37aaa4c Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sat, 18 Mar 2023 11:13:21 +0900 Subject: [PATCH] vector: bug fix: compile error for tests --- vector/util_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vector/util_test.go b/vector/util_test.go index d34cf99a7..4e85557df 100644 --- a/vector/util_test.go +++ b/vector/util_test.go @@ -30,7 +30,7 @@ func TestMain(m *testing.M) { // Issue #2589 func TestLine0(t *testing.T) { dst := ebiten.NewImage(16, 16) - vector.StrokeLine(dst, 0, 0, 0, 0, 2, color.White) + vector.StrokeLine(dst, 0, 0, 0, 0, 2, color.White, true) if got, want := dst.At(0, 0), (color.RGBA{}); got != want { t.Errorf("got: %v, want: %v", got, want) }