From: Jeremy Schlatter Date: Fri, 27 Mar 2015 03:29:06 +0000 (+0000) Subject: math/big: fix copy-paste mistake in int_test.go X-Git-Tag: go1.5beta1~1406 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ff1f3a11e4f1b0eee87225aec1aaaf2e74972ae0;p=gostls13.git math/big: fix copy-paste mistake in int_test.go Change-Id: If986ed2cf94efba92763d00a3182047c05d6f805 Reviewed-on: https://go-review.googlesource.com/8133 Reviewed-by: Minux Ma --- diff --git a/src/math/big/int_test.go b/src/math/big/int_test.go index dff8057cf9..058dd96292 100644 --- a/src/math/big/int_test.go +++ b/src/math/big/int_test.go @@ -353,7 +353,7 @@ func checkBytes(b []byte) bool { } func TestBytes(t *testing.T) { - if err := quick.Check(checkSetBytes, nil); err != nil { + if err := quick.Check(checkBytes, nil); err != nil { t.Error(err) } }