Skip to content

Commit 93b3a41

Browse files
Fix presentation_examples tests
1 parent ec8838c commit 93b3a41

File tree

1 file changed

+7
-19
lines changed

1 file changed

+7
-19
lines changed

tests/test_presentation_examples.py

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,7 @@ def test_monoid_status():
9494
5
9595
).contains_empty_word()
9696
assert examples.partial_brauer_monoid_KM07(5).contains_empty_word()
97-
assert examples.partial_isometries_cycle_graph_monoid_FP22(
98-
5
99-
).contains_empty_word()
97+
assert examples.partial_isometries_cycle_graph_monoid_FP22(5).contains_empty_word()
10098
assert examples.partial_transformation_monoid_MW24(5).contains_empty_word()
10199
assert examples.partial_transformation_monoid_Shu60(5).contains_empty_word()
102100
assert examples.partition_monoid_Eas11(5).contains_empty_word()
@@ -118,9 +116,7 @@ def test_monoid_status():
118116
assert examples.symmetric_inverse_monoid_MW24(5).contains_empty_word()
119117
assert examples.symmetric_inverse_monoid_Shu60(5).contains_empty_word()
120118
assert examples.temperley_lieb_monoid_Eas21(5).contains_empty_word()
121-
assert examples.uniform_block_bijection_monoid_Fit03(
122-
5
123-
).contains_empty_word()
119+
assert examples.uniform_block_bijection_monoid_Fit03(5).contains_empty_word()
124120
assert examples.zero_rook_monoid_Gay18(5).contains_empty_word()
125121

126122

@@ -158,27 +154,19 @@ def test_alternating_group_Moo97():
158154

159155

160156
def test_full_transformation_monoid_Aiz58():
161-
check_full_transformation_monoid(
162-
[4, 5], examples.full_transformation_monoid_Aiz58
163-
)
157+
check_full_transformation_monoid([4, 5], examples.full_transformation_monoid_Aiz58)
164158

165159

166160
def test_full_transformation_monoid_II74():
167-
check_full_transformation_monoid(
168-
[4, 5], examples.full_transformation_monoid_II74
169-
)
161+
check_full_transformation_monoid([4, 5], examples.full_transformation_monoid_II74)
170162

171163

172164
def test_full_transformation_monoid_MW24_a():
173-
check_full_transformation_monoid(
174-
[2, 3, 4, 5], examples.full_transformation_monoid_MW24_a
175-
)
165+
check_full_transformation_monoid([4, 5], examples.full_transformation_monoid_MW24_a)
176166

177167

178-
def test_full_transformation_monoid_MW24_b():
179-
check_full_transformation_monoid(
180-
[3], examples.full_transformation_monoid_MW24_b
181-
)
168+
def test_full_transformation_monoid():
169+
check_full_transformation_monoid([2], examples.full_transformation_monoid)
182170

183171

184172
def test_partial_transformation_monoid_Shu60():

0 commit comments

Comments
 (0)