Skip to content

Commit

Permalink
fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
fzimmermann89 committed Feb 24, 2024
1 parent 5efe977 commit 4a09710
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/operators/test_constraints_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ def test_constraints_operator_multiple_inputs(bounds):
'bounds',
[
((1.0, -1.0), (-1.0, 1.0)), # first one is invalid
((-1.0, 1.0), (1.0, 1.0)), # second on is invalid
((-1.0, 1.0), (1.0, -1.0)), # second one is invalid
((1.0, 1.0),),
((torch.nan, 1),),
((-1, torch.nan),),
((torch.inf, -torch.inf),),
Expand Down

0 comments on commit 4a09710

Please sign in to comment.