Skip to content

Commit

Permalink
reduce test tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
tjlane committed Nov 15, 2024
1 parent 84c89d6 commit f7bfd83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/test_tv.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_tv_denoise_zero_weight(random_difference_map: Map) -> None:
)
random_difference_map.canonicalize_amplitudes()
output.canonicalize_amplitudes()
pd.testing.assert_frame_equal(random_difference_map, output, atol=1e-2, rtol=1e-2)
pd.testing.assert_frame_equal(random_difference_map, output, atol=0.1, rtol=0.1)


def test_tv_denoise_nan_input(random_difference_map: Map) -> None:
Expand Down

0 comments on commit f7bfd83

Please sign in to comment.