fix formatting type

This commit is contained in:
Adrien Marquès 2020-03-02 22:00:39 +01:00
parent 0395d763d6
commit 45675713e7
Signed by: xdrm-brackets
GPG Key ID: D75243CA236D825E
1 changed files with 7 additions and 1 deletions

View File

@ -106,7 +106,13 @@ func TestJsonPrimitiveBool(t *testing.T) {
}
if cast != tcase.BoolValue {
t.Errorf("expected a value of %T, got %T", tcase.BoolValue, cast)
t.Errorf("expected a value of %t, got %t", tcase.BoolValue, cast)
t.FailNow()
}
})
}
}
t.FailNow()
}
})