Skip to content

Commit 9012397

Browse files
authored
Fixed broken test case
Test for __hash__ should succeed now
1 parent 8e96c79 commit 9012397

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/sage/combinat/root_system/fundamental_group.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,8 +334,7 @@ def __hash__(self):
334334
335335
sage: W = ExtendedAffineWeylGroup('A4')
336336
sage: fun = W.fundamental_group().an_element()
337-
sage: w = W.FW().an_element()
338-
sage: hash(w) == hash(w.value())
337+
sage: hash(fun) == hash(fun.value())
339338
True
340339
"""
341340
return hash(self.value())

0 commit comments

Comments
 (0)