Skip to content

Commit b5d7e7f

Browse files
Fix failing test
1 parent 067c8aa commit b5d7e7f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

python/tests/test_high_level.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,13 @@ class A(Expr):
139139
def test_class_vars():
140140
egraph = EGraph()
141141

142-
class A(Expr):
143-
ONE: ClassVar[A]
142+
class B(Expr):
143+
ONE: ClassVar[B]
144144

145-
two = constant("two", A)
145+
two = constant("two", B)
146146

147-
egraph.register(union(A.ONE).with_(two))
148-
egraph.check(eq(A.ONE).to(two))
147+
egraph.register(union(B.ONE).with_(two))
148+
egraph.check(eq(B.ONE).to(two))
149149

150150

151151
def test_extract_constant_twice():

0 commit comments

Comments
 (0)