diff --git a/test/constraint_test.rb b/test/constraint_test.rb index bfc8abf..8eeceb8 100644 --- a/test/constraint_test.rb +++ b/test/constraint_test.rb @@ -242,8 +242,7 @@ def test_int_var_domain x = model.new_int_var(lower_bound, upper_bound, "x") assert_equal lower_bound, x.domain.min - # TODO figure out segfault on Mac ARM - # assert_equal upper_bound, x.domain.max + assert_equal upper_bound, x.domain.max end def test_sum_empty_true