Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
user202729 committed Nov 12, 2024
1 parent a7455b1 commit 8923ec9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/schemes/elliptic_curves/ell_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -1559,7 +1559,7 @@ def period_lattice(self):
sage: EllipticCurve(QQbar, [1, 6]).period_lattice()
Period lattice associated to Elliptic Curve defined by y^2 = x^3 + x + 6 over Algebraic Field
Unsupported cases::
Unsupported cases (the exact error being raised may change in the future)::
sage: EllipticCurve(ZZ, [1, 6]).period_lattice()
Traceback (most recent call last):
Expand All @@ -1569,11 +1569,11 @@ def period_lattice(self):
sage: EllipticCurve(QQt.fraction_field(), [1, 6]).period_lattice()
Traceback (most recent call last):
...
AttributeError: 'FractionField_1poly_field_with_category' object has no attribute 'embeddings'
AttributeError: 'FractionField_1poly_field_with_category' object has no attribute ...
sage: EllipticCurve(GF(7), [1, 6]).period_lattice()
Traceback (most recent call last):
...
AttributeError: 'FiniteField_prime_modn_with_category' object has no attribute 'embeddings'
IndexError: list index out of range
"""
from sage.schemes.elliptic_curves.period_lattice import PeriodLattice_ell
return PeriodLattice_ell(self)
Expand Down

0 comments on commit 8923ec9

Please sign in to comment.