From c7c91629323be035360c203b4efad23c8b23626a Mon Sep 17 00:00:00 2001 From: Michael-T-McCann Date: Fri, 29 Jul 2022 09:08:53 -0600 Subject: [PATCH] Increase tolerance to prevent CPU failure --- scico/test/linop/test_linop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scico/test/linop/test_linop.py b/scico/test/linop/test_linop.py index ac9572997..e801f053c 100644 --- a/scico/test/linop/test_linop.py +++ b/scico/test/linop/test_linop.py @@ -105,7 +105,7 @@ def test_binary_op(testobj, operator): assert isinstance(comp_op, linop.LinearOperator) # Ensure we don't get a Map assert comp_op.input_dtype == testobj.A.dtype - np.testing.assert_allclose(comp_mat @ testobj.x, comp_op @ testobj.x, rtol=0, atol=1e-6) + np.testing.assert_allclose(comp_mat @ testobj.x, comp_op @ testobj.x, rtol=0, atol=1e-5) # linops of different sizes with pytest.raises(ValueError):