From f48631e23b2cb79cb1e78c9d99e0bbed0d9bd0b0 Mon Sep 17 00:00:00 2001 From: Nuno Fachada Date: Tue, 20 Jun 2023 19:23:15 +0100 Subject: [PATCH] Increase numerical tolerance in a clugen() test that was failing when level was set to normal --- tests/test_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_main.py b/tests/test_main.py index a05457e..e65a27c 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -101,7 +101,7 @@ def test_clugen_mandatory( assert_allclose( angle_btw(direc[i, :], result.directions[i, :]), abs(result.angles[i]), - atol=1e-6, + atol=1e-5, )