diff options
Diffstat (limited to 'libgo/go/big/int_test.go')
-rw-r--r-- | libgo/go/big/int_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/big/int_test.go b/libgo/go/big/int_test.go index 818d0c6dbc6..fc981e1da46 100644 --- a/libgo/go/big/int_test.go +++ b/libgo/go/big/int_test.go @@ -94,7 +94,7 @@ func testFunZZ(t *testing.T, msg string, f funZZ, a argZZ) { var z Int f(&z, a.x, a.y) if !isNormalized(&z) { - t.Errorf("msg: %v is not normalized", z, msg) + t.Errorf("%s%v is not normalized", z, msg) } if (&z).Cmp(a.z) != 0 { t.Errorf("%s%+v\n\tgot z = %v; want %v", msg, a, &z, a.z) |