From da0099390309a78b1c5ed19e3896277242c4f831 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Wed, 14 Oct 2015 13:09:42 +0900 Subject: [PATCH] fix printf verbs --- field_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/field_test.go b/field_test.go index 46187d6..379ceff 100644 --- a/field_test.go +++ b/field_test.go @@ -81,7 +81,7 @@ func TestField_Set(t *testing.T) { } if f.Value().(bool) { - t.Errorf("Setted value is wrong: %s want: %s", f.Value().(bool), false) + t.Errorf("Setted value is wrong: %t want: %t", f.Value().(bool), false) } // let's pass a different type