Merge pull request #53 from Acklio/fix-tests-print-verb

Fix print verb in a test
This commit is contained in:
Fatih Arslan 2016-05-19 16:58:40 +03:00
commit 3fe2facc32

View File

@ -1067,7 +1067,7 @@ func TestTagWithStringOption(t *testing.T) {
vs := s.Values() vs := s.Values()
if vs[1] != person.String() { 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])
} }
} }