Skip to content

Commit 11120d9

Browse files
Fix tests
1 parent 2f077bc commit 11120d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/tests/test_modules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def test_tree_modules():
3232
assert D._flatted_deps == [A, B]
3333

3434
egraph = EGraph([D, B])
35-
assert egraph._flatted_deps == [D, A, B]
35+
assert egraph._flatted_deps == [A, B, D]
3636
egraph.check(a(), b(), d())
3737
with pytest.raises(Exception):
3838
egraph.check(c())

0 commit comments

Comments
 (0)