diff --git a/integration-tests/data/dry_compressible_chkpt.h5 b/integration-tests/data/dry_compressible_chkpt.h5 index da6537054..9275746ee 100644 Binary files a/integration-tests/data/dry_compressible_chkpt.h5 and b/integration-tests/data/dry_compressible_chkpt.h5 differ diff --git a/integration-tests/data/linear_sw_wave_chkpt.h5 b/integration-tests/data/linear_sw_wave_chkpt.h5 index 17bd256c8..33b869249 100644 Binary files a/integration-tests/data/linear_sw_wave_chkpt.h5 and b/integration-tests/data/linear_sw_wave_chkpt.h5 differ diff --git a/integration-tests/data/moist_compressible_chkpt.h5 b/integration-tests/data/moist_compressible_chkpt.h5 index 69e5649dc..2dee6f155 100644 Binary files a/integration-tests/data/moist_compressible_chkpt.h5 and b/integration-tests/data/moist_compressible_chkpt.h5 differ diff --git a/integration-tests/model/test_checkpointing.py b/integration-tests/model/test_checkpointing.py index 863369634..28549a66f 100644 --- a/integration-tests/model/test_checkpointing.py +++ b/integration-tests/model/test_checkpointing.py @@ -175,7 +175,7 @@ def test_checkpointing(tmpdir, stepper_type, checkpoint_method): for field_name in ['rho', 'theta', 'u']: diff_array = stepper_2.fields(field_name).dat.data - stepper_3.fields(field_name).dat.data error = np.linalg.norm(diff_array) / np.linalg.norm(stepper_2.fields(field_name).dat.data) - assert error < 5e-16, \ + assert error < 5e-15, \ f'Checkpointed and picked up field {field_name} is not equal' # ------------------------------------------------------------------------ #