Commit 7add9b7f authored by Marcel van Lohuizen's avatar Marcel van Lohuizen

exp/locale/collate: fixed go vet error.

R=r, dave
CC=golang-dev
https://golang.org/cl/7403055
parent 5afa271c
......@@ -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])
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment