Skip to content

Commit 5323b68

Browse files
committed
remove empty variables
Signed-off-by: Adam Korczynski <[email protected]>
1 parent a173705 commit 5323b68

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/store/fuzz_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ func FuzzLoadYAMLByFilePath(f *testing.F) {
1313
if err != nil {
1414
t.Fatal(err)
1515
}
16-
_, _ = LoadYAMLByFilePath(localFile)
16+
//nolint:errcheck // The test doesn't check the return value
17+
LoadYAMLByFilePath(localFile)
1718
})
1819
}

0 commit comments

Comments
 (0)