Fix staticcheck errors

This commit is contained in:
Brian Brazil 2017-12-02 13:52:43 +00:00
parent 29506e0bca
commit d7b3df5ae1
2 changed files with 7 additions and 7 deletions

View File

@ -76,10 +76,10 @@ func testFileSD(t *testing.T, prefix, ext string, expect bool) {
}()
newf, err := os.Create(filepath.Join(testDir, "_test_"+prefix+ext))
defer newf.Close()
if err != nil {
t.Fatal(err)
}
defer newf.Close()
f, err := os.Open(filepath.Join(testDir, prefix+ext))
if err != nil {

View File

@ -45,18 +45,18 @@ type status string
const (
statusSuccess status = "success"
statusError = "error"
statusError status = "error"
)
type errorType string
const (
errorNone errorType = ""
errorTimeout = "timeout"
errorCanceled = "canceled"
errorExec = "execution"
errorBadData = "bad_data"
errorInternal = "internal"
errorTimeout errorType = "timeout"
errorCanceled errorType = "canceled"
errorExec errorType = "execution"
errorBadData errorType = "bad_data"
errorInternal errorType = "internal"
)
var corsHeaders = map[string]string{