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]) } }