From: Robert Hencke Date: Wed, 29 Feb 2012 16:45:57 +0000 (-0800) Subject: gob: trivial print fix X-Git-Tag: weekly.2012-03-04~92 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=fc79058199f4038a96c3c7ad31843c71894e9668;p=gostls13.git gob: trivial print fix R=golang-dev, gri CC=golang-dev https://golang.org/cl/5707062 --- diff --git a/src/pkg/encoding/gob/encoder_test.go b/src/pkg/encoding/gob/encoder_test.go index 3bfae30f39..050786dfd1 100644 --- a/src/pkg/encoding/gob/encoder_test.go +++ b/src/pkg/encoding/gob/encoder_test.go @@ -709,7 +709,7 @@ func TestGobPtrSlices(t *testing.T) { t.Fatal("decode:", err) } if !reflect.DeepEqual(in, out) { - t.Fatal("got %v; wanted %v", out, in) + t.Fatalf("got %v; wanted %v", out, in) } }