Skip to content

Commit

Permalink
trac 33057 fix doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveWitteMorris committed Dec 21, 2021
1 parent d6d0edc commit ad491f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/quadratic_forms/binary_qf.py
Original file line number Diff line number Diff line change
Expand Up @@ -1495,7 +1495,7 @@ def solve_integer(self, n):
sage: Q = BinaryQF([randrange(-10^3, 10^3) for _ in 'abc'])
sage: n = randrange(-10^9, 10^9)
sage: xy = Q.solve_integer(n)
sage: xy is None or Q(*xy) == 0
sage: xy is None or Q(*xy) == n
True
"""
n = ZZ(n)
Expand Down

0 comments on commit ad491f6

Please sign in to comment.