Skip to content

Commit

Permalink
TST:optimize: fixed mistake in linprog test_bug_10124
Browse files Browse the repository at this point in the history
  • Loading branch information
mdhaber authored and toddrjen committed Aug 5, 2019
1 parent 55ada47 commit 024c83e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scipy/optimize/tests/test_linprog.py
Original file line number Diff line number Diff line change
Expand Up @@ -1309,7 +1309,7 @@ def test_bug_10124(self):
o = {"disp": True}
o.update(self.options)
res = linprog(c, A_ub, b_ub, A_eq, b_eq, bounds,
method=self.method, options=self.options)
method=self.method, options=o)
_assert_success(res, desired_x=[10, -3], desired_fun=-22)

def test_bug_10349(self):
Expand Down

0 comments on commit 024c83e

Please sign in to comment.