html: fix print argument in test

R=nigeltao
CC=golang-dev
https://golang.org/cl/5302069
This commit is contained in:
Russ Cox 2011-10-27 18:04:29 -07:00
parent 6808da0163
commit 785baa86f1

View file

@ -439,7 +439,7 @@ loop:
}
z.Next()
if z.Error() != os.EOF {
t.Errorf("%s: want EOF got %q", tt.desc, z.Token().String())
t.Errorf("%s: want EOF got %q", tt.desc, z.Error())
}
}
}