Skip to content
Snippets Groups Projects
Commit 1f09965c authored by Johannes Schumann's avatar Johannes Schumann
Browse files

Fix tested ref value

parent c5c42852
No related branches found
No related tags found
1 merge request!90Fix energy min/max fields
Pipeline #53083 failed
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment