Skip to content

Commit

Permalink
fix CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Mar 16, 2023
1 parent 4147e4a commit c47804a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/python/unittest/test_arith_intset.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,9 +374,9 @@ def test_union_lower_bound():
assert result.min_value.same_as(neg_inf)
assert result.max_value.same_as(pos_inf)
set_2 = tvm.arith.IntervalSet(min_value=pos_inf, max_value=neg_inf)
result = tvm.arith.int_set.union_lower_bound([set_0, set_2])
result = tvm.arith.int_set.union_lower_bound([set_0, set_1, set_2])
assert result.min_value.same_as(neg_inf)
assert result.max_value.same_as(0)
assert result.max_value.same_as(pos_inf)


if __name__ == "__main__":
Expand Down

0 comments on commit c47804a

Please sign in to comment.