Skip to content

Commit

Permalink
Merge pull request #7874 from rgommers/fix-linprog-failure
Browse files Browse the repository at this point in the history
TST: fix an optimize.linprog test that fails intermittently.
  • Loading branch information
rgommers committed Sep 17, 2017
2 parents 31bf1ac + ceafcd3 commit 2702e67
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 @@ -687,7 +687,7 @@ def test_bug_6690(self):
sol = linprog(c, A_ub=A_ub, b_ub=b_ub, A_eq=A_eq, b_eq=b_eq,
bounds=bounds, method=self.method,
options=self.options)
_assert_success(sol, desired_fun=-1.191)
_assert_success(sol, desired_fun=-1.191, rtol=1e-6)

def test_bug_5400(self):
# https://github.com/scipy/scipy/issues/5400
Expand Down

0 comments on commit 2702e67

Please sign in to comment.