We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daee43b commit b09f1abCopy full SHA for b09f1ab
config_test.go
@@ -62,7 +62,7 @@ var tests = []TestRunner{
62
t.Errorf("Got LookupBool error: '%v', expected none\n", err)
63
}
64
if !val {
65
- t.Errorf("Got %b from LookupBool, expected 'false'\n", val)
+ t.Errorf("Got %t from LookupBool, expected 'false'\n", val)
66
67
},
68
// LookupInt32
object_test.go
@@ -108,7 +108,7 @@ func TestObjectOwner(t *testing.T) {
108
109
func checkShortId(t *testing.T, Id, shortId string) {
110
if len(shortId) < 7 || len(shortId) >= len(Id) {
111
- t.Fatal("bad shortId lenght %s", len(shortId))
+ t.Fatalf("bad shortId lenght %d", len(shortId))
112
113
114
if !strings.HasPrefix(Id, shortId) {
0 commit comments