Skip to content

Commit

Permalink
Fix sense 1d kbin input
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielaBreitman committed Aug 8, 2024
1 parent d843982 commit 5b6112d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_sensitivity.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_sensitivity_1d_binned(observation):
assert np.all(ps.calculate_sensitivity_1d() == ps.calculate_sensitivity_1d_binned(ps.k1d))
kbins = np.linspace(0.1, 0.5, 10) * littleh / units.Mpc
sense1d_sample = ps.calculate_sensitivity_1d_binned(k=kbins)
assert sense1d_sample.shape == len(kbins) - 1
assert sense1d_sample.shape == len(kbins)


def test_plots(observation):
Expand Down

0 comments on commit 5b6112d

Please sign in to comment.