From b8b111b7df0d50f165911d158adbfed9a9a2fc57 Mon Sep 17 00:00:00 2001 From: Lance Ball Date: Thu, 1 Dec 2022 15:51:38 -0500 Subject: [PATCH] fixup: adjust supported builder validation test Signed-off-by: Lance Ball --- pipelines/tekton/validate_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipelines/tekton/validate_test.go b/pipelines/tekton/validate_test.go index 2ae9801233..2a087e8453 100644 --- a/pipelines/tekton/validate_test.go +++ b/pipelines/tekton/validate_test.go @@ -70,9 +70,9 @@ func Test_validatePipeline(t *testing.T) { wantErr: true, }, { - name: "Unsupported runtime - Go - pack builder - without additional Buildpacks", + name: "Supported runtime - Go - pack builder - without additional Buildpacks", function: fn.Function{Build: fn.BuildSpec{Builder: builders.Pack}, Runtime: "go"}, - wantErr: true, + wantErr: false, }, { name: "Unsupported runtime - Go - pack builder - with additional Buildpacks",