diff --git a/config/setup/markdown_test.go b/config/setup/markdown_test.go index c8b2f315..1ada8a1f 100644 --- a/config/setup/markdown_test.go +++ b/config/setup/markdown_test.go @@ -111,7 +111,7 @@ func TestMarkdownStaticGen(t *testing.T) { fp := filepath.Join(c.Root, markdown.DefaultStaticDir) if err = os.RemoveAll(fp); err != nil { - t.Errorf("Error while removing the generated static files: ", err) + t.Errorf("Error while removing the generated static files: %v", err) } } diff --git a/middleware/recorder_test.go b/middleware/recorder_test.go index 9d4e5b83..ed6c6abd 100644 --- a/middleware/recorder_test.go +++ b/middleware/recorder_test.go @@ -13,7 +13,7 @@ func TestNewResponseRecorder(t *testing.T) { t.Fatalf("Expected Response writer in the Recording to be same as the one sent\n") } if recordRequest.status != http.StatusOK { - t.Fatalf("Expected recorded status to be http.StatusOK (%d) , but found %d\n ", recordRequest.status) + t.Fatalf("Expected recorded status to be http.StatusOK (%d) , but found %d\n ", http.StatusOK, recordRequest.status) } } func TestWriteHeader(t *testing.T) { @@ -35,6 +35,6 @@ func TestWrite(t *testing.T) { t.Fatalf("Expected the bytes written counter to be %d, but instead found %d\n", len(buf), recordRequest.size) } if w.Body.String() != responseTestString { - t.Fatalf("Expected Response Body to be %s , but found %s\n", w.Body.String()) + t.Fatalf("Expected Response Body to be %s , but found %s\n", responseTestString, w.Body.String()) } }