From 5568521cd1964295914f2d81934303aa09ac6825 Mon Sep 17 00:00:00 2001 From: Mauren Berti Date: Sat, 21 Oct 2023 17:47:49 -0400 Subject: [PATCH] fix: lint issues Change package for test to 'util_test' and add dot-import for the main package. --- .../commands/internal/util/configmapSecretFlagsAndArgs_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kustomize/commands/internal/util/configmapSecretFlagsAndArgs_test.go b/kustomize/commands/internal/util/configmapSecretFlagsAndArgs_test.go index c736eccfa..f27ae443b 100644 --- a/kustomize/commands/internal/util/configmapSecretFlagsAndArgs_test.go +++ b/kustomize/commands/internal/util/configmapSecretFlagsAndArgs_test.go @@ -1,13 +1,14 @@ // Copyright 2019 The Kubernetes Authors. // SPDX-License-Identifier: Apache-2.0 -package util +package util_test import ( "reflect" "testing" "github.com/stretchr/testify/require" + . "sigs.k8s.io/kustomize/kustomize/v5/commands/internal/util" "sigs.k8s.io/kustomize/kyaml/filesys" )