Commit 6154ae8e authored by Robert Griesemer's avatar Robert Griesemer

math/big: fix Errorf verb

Pointed out by go vet.

R=r
CC=golang-dev
https://golang.org/cl/10368048
parent 269b2f2d
......@@ -685,7 +685,7 @@ func runModWTests(t *testing.T, tests []modWTest) {
r := in.abs.modW(d.abs[0])
if r != out.abs[0] {
t.Errorf("#%d failed: got %s want %s", i, r, out)
t.Errorf("#%d failed: got %d want %s", i, r, out)
}
}
}
......
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