0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00

Fix formatting directives in tests

Signed-off-by: Alexander Morozov <lk4d4@docker.com>
This commit is contained in:
Alexander Morozov 2015-09-04 08:34:58 -07:00
parent 94becb89f6
commit b199825c3b
2 changed files with 3 additions and 3 deletions

View file

@ -111,7 +111,7 @@ func TestMarkdownStaticGen(t *testing.T) {
fp := filepath.Join(c.Root, markdown.DefaultStaticDir) fp := filepath.Join(c.Root, markdown.DefaultStaticDir)
if err = os.RemoveAll(fp); err != nil { 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)
} }
} }

View file

@ -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") t.Fatalf("Expected Response writer in the Recording to be same as the one sent\n")
} }
if recordRequest.status != http.StatusOK { 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) { 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) t.Fatalf("Expected the bytes written counter to be %d, but instead found %d\n", len(buf), recordRequest.size)
} }
if w.Body.String() != responseTestString { 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())
} }
} }