Skip to content

Commit

Permalink
//nolint:errcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
AriehSchneier committed Nov 18, 2024
1 parent 73310d5 commit 80835dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/sysl/sysl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ func runSyslWithOutput(t *testing.T, outFileExt string, stdin io.Reader, args ..
outFileExt = ".out"
}
tempDir := t.TempDir()
_ = os.Chmod(tempDir, 0777)
_ = os.Chmod(tempDir, 0777) //nolint:errcheck
outputPath := filepath.Join(tempDir, "output"+outFileExt)
args = append(args, "--output", outputPath)
runSysl(t, 0, stdin, args...)
Expand Down

0 comments on commit 80835dc

Please sign in to comment.