We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41c4fc1 commit f5aea63Copy full SHA for f5aea63
1 file changed
tests/test_cong.py
@@ -59,7 +59,6 @@ def test_018():
59
60
assert not cong.finished()
61
assert cong.number_of_classes() == POSITIVE_INFINITY
62
- assert cong.finished()
63
64
kb1 = KnuthBendix(congruence_kind.twosided, p)
65
assert cong.has(KnuthBendix)
@@ -71,6 +70,7 @@ def test_018():
71
70
assert kb2.number_of_classes() == POSITIVE_INFINITY
72
73
assert kb2.contains([0], [1])
+ cong.run()
74
assert not cong.has(ToddCoxeter)
75
assert not cong.has(Kambites)
76
@@ -101,8 +101,8 @@ def test_has_get():
101
assert c.has(ToddCoxeter)
102
tc = c.get(ToddCoxeter)
103
104
+ c.run()
105
assert c.number_of_classes() == POSITIVE_INFINITY
- assert c.number_of_runners() == 1
106
assert not c.has(ToddCoxeter)
107
assert not c.has(Kambites)
108
assert c.has(KnuthBendix)
0 commit comments