Skip to content

Commit e8384cf

Browse files
committed
Update test_set_sample_splitting.py
1 parent 3fd3a8e commit e8384cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doubleml/tests/test_set_sample_splitting.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ def test_doubleml_draw_vs_set():
160160

161161
msg = 'n_folds must be greater than 1. You can use set_sample_splitting with a tuple to only use one fold.'
162162
with pytest.raises(ValueError, match=msg):
163-
dml_plr_drawn = DoubleMLPLR(dml_data, ml_l, ml_m,
164-
n_folds=1, n_rep=1)
163+
_ = DoubleMLPLR(dml_data, ml_l, ml_m,
164+
n_folds=1, n_rep=1)
165165

166166
dml_plr_drawn = DoubleMLPLR(dml_data, ml_l, ml_m,
167167
n_folds=2, n_rep=1)

0 commit comments

Comments
 (0)