Skip to content

Commit

Permalink
Turn down almost_equal reltol.
Browse files Browse the repository at this point in the history
  • Loading branch information
1ozturkbe committed Nov 25, 2019
1 parent 4c23d1f commit ac975c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion robust/testing/t_primitives.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ def test_methods(self):
# method['name'] + '_' + uncertainty_set)
self.assertTrue(sol.almost_equal(pickle.load(open(os.path.dirname(__file__) +
'/diffs/test_methods/' +
method['name'] + '_' + uncertainty_set)), reltol=1e-2))
method['name'] + '_' + uncertainty_set),
reltol=1e-2, sens_abstol=1e-2), reltol=1e-2))

TESTS = [TestPrimitives]

Expand Down

0 comments on commit ac975c6

Please sign in to comment.