Skip to content

Commit

Permalink
increase tolerance for phenom tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ravioli1369 committed Jan 31, 2025
1 parent 1729081 commit f8e0770
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/transforms/test_iirfilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def f_ref(request):
return request.param


def test_butterworth_phenom_signal(
def test_filters_phenom_signal(
sample_rate,
order,
chirp_mass,
Expand Down Expand Up @@ -340,10 +340,10 @@ def test_butterworth_phenom_signal(
assert np.allclose(
1e21 * scipy_filtered_data_low,
1e21 * torch_filtered_data_low[0],
atol=2e-3,
atol=5e-3,
)
assert np.allclose(
1e21 * scipy_filtered_data_high,
1e21 * torch_filtered_data_high[0],
atol=2e-3,
atol=5e-3,
)

0 comments on commit f8e0770

Please sign in to comment.