From 989f2c0ac595b664c3a6ce444457fea85f834bd1 Mon Sep 17 00:00:00 2001 From: Dmitry S Date: Thu, 20 Jun 2024 23:53:14 +0200 Subject: [PATCH] add license header Signed-off-by: Dmitry S --- test/helpers_test.go | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/test/helpers_test.go b/test/helpers_test.go index ae04371422a7..a1e9ae0f8277 100644 --- a/test/helpers_test.go +++ b/test/helpers_test.go @@ -1,3 +1,18 @@ +// +// Copyright 2024 The Sigstore Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + //go:build e2e package test @@ -26,7 +41,7 @@ func TestGenerateCertificateBundleFiles(t *testing.T) { } { t.Run(tt.name, func(t *testing.T) { td := t.TempDir() - suffix := "foobar" + suffix := "foo" caCertFile, caPrivKeyFile, caIntermediateCertFile, caIntermediatePrivKeyFile, certFile, certChainFile, err := generateCertificateBundleFiles(td, true, suffix) if err != nil {