diff options
Diffstat (limited to 'src/pkg/bignum/bignum_test.go')
-rw-r--r-- | src/pkg/bignum/bignum_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/bignum/bignum_test.go b/src/pkg/bignum/bignum_test.go index 5b4cf8fd1..2b2be6693 100644 --- a/src/pkg/bignum/bignum_test.go +++ b/src/pkg/bignum/bignum_test.go @@ -152,7 +152,7 @@ func TestNatConv(t *testing.T) { test_msg = "NatConvG"; x := Nat(100); - y, b, _ := NatFromString(fmt.Sprintf("%b", &x), 2); + y, _, _ := NatFromString(fmt.Sprintf("%b", &x), 2); nat_eq(100, y, x); } |