We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0565763 commit 356ba35Copy full SHA for 356ba35
1 file changed
tests/test_runs/test_run_functions.py
@@ -919,7 +919,7 @@ def test_predict_proba_hardclassifier(self):
919
920
# verifies last two arff indices (predict and correct)
921
# TODO: programmatically check wether these are indeed features (predict, correct)
922
- predictionsA = np.array(arff_content1)[:, -2:-1]
923
- predictionsB = np.array(arff_content2)[:, -2:-1]
+ predictionsA = np.array(arff_content1)[:, -2:]
+ predictionsB = np.array(arff_content2)[:, -2:]
924
925
np.testing.assert_array_equal(predictionsA, predictionsB)
0 commit comments