]> Cypherpunks repositories - gostls13.git/commitdiff
exp/locale/collate: fixed go vet error.
authorMarcel van Lohuizen <mpvl@golang.org>
Wed, 27 Feb 2013 13:09:42 +0000 (14:09 +0100)
committerMarcel van Lohuizen <mpvl@golang.org>
Wed, 27 Feb 2013 13:09:42 +0000 (14:09 +0100)
R=r, dave
CC=golang-dev
https://golang.org/cl/7403055

src/pkg/exp/locale/collate/collate_test.go

index f4d62ab76cd0fec24d4880fd4dd8449d41f4fa11..ce41fc4ae8be1e7d779fdd0303867dc10a5ffbef 100644 (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])
                        }
                }
        }