*: fix various formatting issues

This commit is contained in:
Jonathan Boulle
2014-10-20 17:55:18 -07:00
parent d67a2855c1
commit b3d5333cb3
8 changed files with 15 additions and 15 deletions

View File

@@ -115,7 +115,7 @@ func TestGetAction(t *testing.T) {
err := assertResponse(got, wantURL, wantHeader, nil)
if err != nil {
t.Errorf("%#d: %v", i, err)
t.Errorf("#%d: %v", i, err)
}
}
}
@@ -164,7 +164,7 @@ func TestWaitAction(t *testing.T) {
err := assertResponse(got, wantURL, wantHeader, nil)
if err != nil {
t.Errorf("%#d: %v", i, err)
t.Errorf("#%d: %v", i, err)
}
}
}
@@ -208,7 +208,7 @@ func TestCreateAction(t *testing.T) {
err := assertResponse(got, wantURL, wantHeader, []byte(tt.wantBody))
if err != nil {
t.Errorf("%#d: %v", i, err)
t.Errorf("#%d: %v", i, err)
}
}
}