Skip to content

Commit e069682

Browse files
committedFeb 23, 2023
Fix call in test so that it returns a type error from the correct place (from coverage)
1 parent 425d8b2 commit e069682

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tests/imputation/test_ratio_of_means.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def test_params_missing_link_column(fxt_load_test_csv):
248248
)
249249
with pytest.raises(TypeError):
250250
ratio_of_means.impute(
251-
test_dataframe, **params, construction_link_col=construction_col
251+
input_df=test_dataframe, **params, construction_link_col=construction_col
252252
)
253253

254254

0 commit comments

Comments
 (0)
Please sign in to comment.