Skip to content

Commit 41db1bd

Browse files
committed
update for pandas API change
pandas-dev/pandas#31532
1 parent 7f0ec36 commit 41db1bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

q2_sample_classifier/tests/test_estimators.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ def test_predict_classifications(self):
504504
ls_pred_classes = prob.columns.tolist()
505505
ls_correct_range = [col for col in ls_pred_classes if
506506
prob[col].between(
507-
0, 1, inclusive=True).all()]
507+
0, 1, inclusive="both").all()]
508508
self.assertEqual(len(ls_correct_range), prob.shape[1],
509509
msg='Predicted probabilities of class {}'
510510
'are not in range [0,1]'.format(

0 commit comments

Comments
 (0)