Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brash6 committed Nov 14, 2024
1 parent 9bff44b commit b344910
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/estimation/get_estimation_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def _transform_outputs(causal_effects):
indirect_treated = causal_effects['indirect_effect_treated']
indirect_control = causal_effects['indirect_effect_control']

return np.array(total, direct_treated, direct_control, indirect_treated, indirect_control, 0)
return [total, direct_treated, direct_control, indirect_treated, indirect_control, 0]


def _get_estimation_results(x, t, m, y, estimator, config):
Expand Down

0 comments on commit b344910

Please sign in to comment.