Skip to content

Commit

Permalink
Apply ridiculous golangci-lint suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
odeke-em committed Oct 25, 2024
1 parent d6f4e64 commit 9fe938f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fuzz_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import (
var dirPath = filepath.Join("testdata", "corpra", "builder")

func init() {
if err := os.MkdirAll(dirPath, 0755); err != nil {
var err error
if err = os.MkdirAll(dirPath, 0755); err != nil {
panic(err)
}
}
Expand Down

0 comments on commit 9fe938f

Please sign in to comment.