Skip to content

Commit

Permalink
fix builder test which was constructing an invalid value
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-q committed Jun 25, 2024
1 parent 6b9427e commit 08df26a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hugr-py/tests/test_hugr_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def test_ancestral_sibling():
"val",
[
val.Function(simple_id().hugr),
val.Sum(1, tys.Sum([[INT_T], [tys.Bool, INT_T]]), [IntVal(34)]),
val.Sum(1, tys.Sum([[INT_T], [tys.Bool, INT_T]]), [val.TRUE, IntVal(34)]),
val.Tuple([val.TRUE, IntVal(23)]),
],
)
Expand Down

0 comments on commit 08df26a

Please sign in to comment.