Skip to content

Commit 14a9a98

Browse files
committed
test: correct lint issues
1 parent 4da880d commit 14a9a98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/internal/target/kusttarget_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,9 +530,9 @@ func (l loaderNewThrowsError) New(_ string) (ifc.Loader, error) {
530530
}
531531

532532
func (l loaderNewThrowsError) Load(location string) ([]byte, error) {
533-
return l.baseLoader.Load(location)
533+
return l.baseLoader.Load(location) //nolint:wrapcheck // baseLoader's error is sufficient
534534
}
535535

536536
func (l loaderNewThrowsError) Cleanup() error {
537-
return l.baseLoader.Cleanup()
537+
return l.baseLoader.Cleanup() //nolint:wrapcheck // baseLoader's error is sufficient
538538
}

0 commit comments

Comments
 (0)