Skip to content

Commit

Permalink
Update doc tests to track change in LinearExpression arg types
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiirola committed Mar 8, 2024
1 parent 9da87b6 commit 976f88d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/OnlineDocs/src/expr/managing.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def clone_expression(expr):
# x[0] + 5*x[1]
print(str(ce))
# x[0] + 5*x[1]
print(e.arg(0) is not ce.arg(0))
print(e.arg(0) is ce.arg(0))
# True
print(e.arg(1) is not ce.arg(1))
# True
Expand Down

0 comments on commit 976f88d

Please sign in to comment.