Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Fix doctest in rings
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasdiez committed Mar 24, 2022
1 parent 7060ea1 commit dec7b7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/rings/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def _test_karatsuba_multiplication(base_ring, maxdeg1, maxdeg2,
threshold = randint(0, min(maxdeg1, maxdeg2))
R = PolynomialRing(base_ring, 'x')
if verbose:
print("test_karatsuba_multiplication: ring={}, threshold={}".format(R, threshold))
print("_test_karatsuba_multiplication: ring={}, threshold={}".format(R, threshold))
for i in range(numtests):
f = R.random_element(randint(0, maxdeg1), *base_ring_random_elt_args)
g = R.random_element(randint(0, maxdeg2), *base_ring_random_elt_args)
Expand Down

0 comments on commit dec7b7b

Please sign in to comment.