From 8c185df41a8a2fbafc4001f6d9c76a7b10f258eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amund=20Faller=20R=C3=A5heim?= Date: Fri, 5 Apr 2024 09:49:44 +0200 Subject: [PATCH] Update tests/test_solver.py Co-authored-by: Gunnhild Svandal Presthus <36099159+gunnhildsp@users.noreply.github.com> --- tests/test_solver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_solver.py b/tests/test_solver.py index 2211b50..1720ef3 100644 --- a/tests/test_solver.py +++ b/tests/test_solver.py @@ -60,7 +60,7 @@ def heat_balance(currents: np.array): xmax=np.array([10_000, 10_000]), tolerance=1e-8, ) - np.testing.assert_array_almost_equal(solution, [9000, 9000], decimal=8) + np.testing.assert_array_almost_equal(solution, [9_000, 9_000], decimal=8) def test_bisect_raises_valueerror_when_same_sign_for_array_input():