Fix print verb in a test

This commit is contained in:
Ivaylo Petrov 2016-05-19 14:45:17 +02:00
parent 24f3e1df2f
commit dd0e61ff4e

View File

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