From 128ce00fbbc17fb23f9c97b7efae4fe82be95e2b Mon Sep 17 00:00:00 2001 From: Rory Conlin Date: Wed, 8 Feb 2023 09:51:20 -0500 Subject: [PATCH] Update test_examples.py --- tests/test_examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_examples.py b/tests/test_examples.py index 1ba05b31d4..ee8ba7fc26 100644 --- a/tests/test_examples.py +++ b/tests/test_examples.py @@ -185,7 +185,7 @@ def test_solve_bounds(): # check that all errors are nearly 0, since residual values are within target bounds f = obj.compute(obj.x(eq)) - np.testing.assert_allclose(f, 0, atol=1e-9) + np.testing.assert_allclose(f, 0, atol=1e-4) @pytest.mark.regression