diff --git a/tests/integration/drtsans/tof/eqsans/test_elastic_and_inelastic_corrections.py b/tests/integration/drtsans/tof/eqsans/test_elastic_and_inelastic_corrections.py index 21616187..e9c48a37 100644 --- a/tests/integration/drtsans/tof/eqsans/test_elastic_and_inelastic_corrections.py +++ b/tests/integration/drtsans/tof/eqsans/test_elastic_and_inelastic_corrections.py @@ -382,9 +382,9 @@ def _run_reduction_and_compare(config, expected_result_basename): test_iq2d_file = os.path.join(test_dir, config["outputFileName"] + "_Iqxqy.dat") gold_iq2d_file = os.path.join(datarepo_dir.eqsans, "test_corrections", expected_result_basename + "_Iqxqy.dat") # compare - np.testing.assert_allclose(np.loadtxt(test_iq2d_file, skiprows=4), - np.loadtxt(gold_iq2d_file, skiprows=4), - atol=0.003) + np.testing.assert_allclose( + np.loadtxt(test_iq2d_file, skiprows=4), np.loadtxt(gold_iq2d_file, skiprows=4), atol=0.003 + ) DeleteWorkspace("_empty") DeleteWorkspace("_mask")