Commit ff1f3a11 authored by Jeremy Schlatter's avatar Jeremy Schlatter Committed by Minux Ma

math/big: fix copy-paste mistake in int_test.go

Change-Id: If986ed2cf94efba92763d00a3182047c05d6f805
Reviewed-on: https://go-review.googlesource.com/8133Reviewed-by: default avatarMinux Ma <minux@golang.org>
parent 4ec7e76a
......@@ -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)
}
}
......
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