From dd0e61ff4e52ea12d9e99a1a5355012ef191e8da Mon Sep 17 00:00:00 2001 From: Ivaylo Petrov Date: Thu, 19 May 2016 14:45:17 +0200 Subject: [PATCH] Fix print verb in a test --- structs_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structs_test.go b/structs_test.go index d7ea11d..b1b05a1 100644 --- a/structs_test.go +++ b/structs_test.go @@ -1067,7 +1067,7 @@ func TestTagWithStringOption(t *testing.T) { vs := s.Values() if vs[1] != person.String() { - t.Errorf("Value for 2nd field (person) should be %t, got: %t", person.String(), vs[1]) + t.Errorf("Value for 2nd field (person) should be %T, got: %T", person.String(), vs[1]) } }