From 1f09965c384a28c78ad008210db46a696e827c93 Mon Sep 17 00:00:00 2001 From: Johannes Schumann <johannes.schumann@fau.de> Date: Sun, 30 Jun 2024 01:46:18 +0200 Subject: [PATCH] Fix tested ref value --- km3buu/tests/test_output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/km3buu/tests/test_output.py b/km3buu/tests/test_output.py index ed1d6e1..efb4bba 100644 --- a/km3buu/tests/test_output.py +++ b/km3buu/tests/test_output.py @@ -120,7 +120,7 @@ class TestGiBUUOutput(unittest.TestCase): def test_min_max_energy(self): assert not np.isnan(self.output.energy_min) assert not np.isnan(self.output.energy_max) - np.testing.assert_array_almost_equal(self.output.energy_min, 1.0) + np.testing.assert_array_almost_equal(self.output.energy_min, 0.11) np.testing.assert_array_almost_equal(self.output.energy_max, 100.0) -- GitLab