]> Cypherpunks repositories - gostls13.git/commitdiff
math/big: fix copy-paste mistake in int_test.go
authorJeremy Schlatter <jeremy.schlatter@gmail.com>
Fri, 27 Mar 2015 03:29:06 +0000 (03:29 +0000)
committerMinux Ma <minux@golang.org>
Fri, 27 Mar 2015 21:02:31 +0000 (21:02 +0000)
Change-Id: If986ed2cf94efba92763d00a3182047c05d6f805
Reviewed-on: https://go-review.googlesource.com/8133
Reviewed-by: Minux Ma <minux@golang.org>
src/math/big/int_test.go

index dff8057cf9f5eb1fc6f22cd03f6cd736226e70a1..058dd96292cdde4e2a4512e6ee222042824dc8bf 100644 (file)
@@ -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)
        }
 }