Skip to content

Commit

Permalink
udpate test
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevengre committed Sep 9, 2024
1 parent 65fc671 commit fb07b5d
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions pyk/src/tests/unit/test_kcfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -925,16 +925,14 @@ def test_no_cell_rewrite_to_dots() -> None:
[
(
KCFG.Node(2, CTerm(k(KVariable('Y')), [ge_ml('Y', 0)])),
CSubst(Subst({'X': KVariable('Y')}), [lt_ml('Y', 10)]),
CSubst(Subst({'X': KVariable('Y')}), []),
),
(
KCFG.Node(3, CTerm(k(KVariable('Z')), [ge_ml('Z', 5)])),
CSubst(
Subst({'X': KVariable('Z')}),
[
ge_ml('Z', 5),
lt_ml('Z', 10),
ge_ml('Z', 0),
],
),
),
Expand All @@ -952,17 +950,11 @@ def test_no_cell_rewrite_to_dots() -> None:
[
(
KCFG.Node(2, CTerm(k(KVariable('Y')), [ge_ml('Y', 0), lt_ml('Y', 5)])),
CSubst(Subst({'X': KVariable('Y')}), [lt_ml('Y', 5), lt_ml('Y', 10)]),
CSubst(Subst({'X': KVariable('Y')}), [lt_ml('Y', 5)]),
),
(
KCFG.Node(3, CTerm(k(KVariable('Z')), [ge_ml('Z', 5), lt_ml('Z', 10)])),
CSubst(
Subst({'X': KVariable('Z')}),
[
ge_ml('Z', 5),
ge_ml('Z', 0),
],
),
CSubst(Subst({'X': KVariable('Z')}), [ge_ml('Z', 5)]),
),
],
),
Expand Down

0 comments on commit fb07b5d

Please sign in to comment.