1
0
mirror of https://github.com/golang/go synced 2024-11-12 08:20:22 -07:00

exp/locale/collate: fixed go vet error.

R=r, dave
CC=golang-dev
https://golang.org/cl/7403055
This commit is contained in:
Marcel van Lohuizen 2013-02-27 14:09:42 +01:00
parent 5afa271ce3
commit 7add9b7f6a

View File

@ -210,7 +210,7 @@ func TestProcessWeights(t *testing.T) {
processWeights(tt.opt.alt, uint32(tt.opt.top), in)
for j, w := range in {
if w != out[j] {
t.Errorf("%d: Weights %d was %v; want %v %X %X", i, j, w, out[j])
t.Errorf("%d: Weights %d was %v; want %v", i, j, w, out[j])
}
}
}