Commit fc790581 authored by Robert Hencke's avatar Robert Hencke Committed by Robert Griesemer

gob: trivial print fix

R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5707062
parent b1b0ed1e
......@@ -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)
}
}
......
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