Skip to content

Commit 6bc3152

Browse files
Correct variable names in test
Co-authored-by: Travis Scrimshaw <clfrngrown@aol.com>
1 parent c4a60bd commit 6bc3152

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/combinat/permutation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7096,9 +7096,9 @@ def _element_constructor_(self, x, check=True):
70967096
Ensure that :issue:`37284` is fixed::
70977097
70987098
sage: PG = PermutationGroup([[(1,2,3),(5,6)],[(7,8)]])
7099-
sage: P5 = Permutations(8)
7099+
sage: P8 = Permutations(8)
71007100
sage: p = PG.an_element()
7101-
sage: P5(p).parent()
7101+
sage: P8(p).parent()
71027102
Standard permutations of 8
71037103
"""
71047104
if isinstance(x, PermutationGroupElement):

0 commit comments

Comments
 (0)