Skip to content
Snippets Groups Projects
Commit 826962d6 authored by David Verelst's avatar David Verelst
Browse files

slightly relax almost equal criteria for HS2 pwr file reading test

parent 60df4f7f
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -120,7 +120,7 @@ class Tests(unittest.TestCase):
res = results()
df_data, units = res.load_pwr_df(fname)
data = np.loadtxt(fname)
np.testing.assert_almost_equal(data, df_data.values)
np.testing.assert_almost_equal(data, df_data.values, decimal=6)
if __name__ == "__main__":
......
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