Skip to content

Commit

Permalink
tests(impact): adjust test to new p-value param
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpomerenke committed Aug 15, 2024
1 parent 008c8a4 commit 90c1f38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def test_mean_impact_estimates():
assert impacts_df.index[0] == -4
assert impacts_df.index[-1] == 6
assert len(impacts_df) == 4 + 7
assert set(impacts_df.columns) == {"mean", "ci_lower", "ci_upper"}
assert set(impacts_df.columns) == {"mean", "ci_lower", "ci_upper", "p_value"}
for i in range(-4, -1):
mean = impacts_df.loc[i, "mean"]
assert -50 <= mean <= 50
Expand Down

0 comments on commit 90c1f38

Please sign in to comment.