Skip to content

Commit f16e48e

Browse files
authored
Merge pull request #7267 from ykakarap/lint-blocker-fix
🌱 Fix the lint error on main
2 parents 081c585 + b336a09 commit f16e48e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/clusterctl/client/cluster/template_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ func Test_templateClient_GetFromURL(t *testing.T) {
310310
// redirect stdin
311311
saveStdin := os.Stdin
312312
defer func() { os.Stdin = saveStdin }()
313-
os.Stdin, err = os.Open(path)
313+
os.Stdin, err = os.Open(path) //nolint:gosec
314314
g.Expect(err).NotTo(HaveOccurred())
315315

316316
type args struct {

0 commit comments

Comments
 (0)