Skip to content

Commit 8923ec9

Browse files
committed
Fix failing tests
1 parent a7455b1 commit 8923ec9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sage/schemes/elliptic_curves/ell_field.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1559,7 +1559,7 @@ def period_lattice(self):
15591559
sage: EllipticCurve(QQbar, [1, 6]).period_lattice()
15601560
Period lattice associated to Elliptic Curve defined by y^2 = x^3 + x + 6 over Algebraic Field
15611561
1562-
Unsupported cases::
1562+
Unsupported cases (the exact error being raised may change in the future)::
15631563
15641564
sage: EllipticCurve(ZZ, [1, 6]).period_lattice()
15651565
Traceback (most recent call last):
@@ -1569,11 +1569,11 @@ def period_lattice(self):
15691569
sage: EllipticCurve(QQt.fraction_field(), [1, 6]).period_lattice()
15701570
Traceback (most recent call last):
15711571
...
1572-
AttributeError: 'FractionField_1poly_field_with_category' object has no attribute 'embeddings'
1572+
AttributeError: 'FractionField_1poly_field_with_category' object has no attribute ...
15731573
sage: EllipticCurve(GF(7), [1, 6]).period_lattice()
15741574
Traceback (most recent call last):
15751575
...
1576-
AttributeError: 'FiniteField_prime_modn_with_category' object has no attribute 'embeddings'
1576+
IndexError: list index out of range
15771577
"""
15781578
from sage.schemes.elliptic_curves.period_lattice import PeriodLattice_ell
15791579
return PeriodLattice_ell(self)

0 commit comments

Comments
 (0)