Add the missing name arg

This commit is contained in:
John.Lockwood 2016-08-26 21:32:44 -07:00
parent 63734eae1e
commit 7ff66c6bff
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ func TestParser_Parse(t *testing.T) {
} }
if (err == nil && !token.Valid) || (err != nil && token.Valid) { if (err == nil && !token.Valid) || (err != nil && token.Valid) {
t.Errorf("[%v] Inconsistent behavior between returned error and token.Valid") t.Errorf("[%v] Inconsistent behavior between returned error and token.Valid", data.name)
} }
if data.errors != 0 { if data.errors != 0 {