Skip to content

Commit 356ba35

Browse files
committed
changed slicing
1 parent 0565763 commit 356ba35

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_runs/test_run_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ def test_predict_proba_hardclassifier(self):
919919

920920
# verifies last two arff indices (predict and correct)
921921
# 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]
922+
predictionsA = np.array(arff_content1)[:, -2:]
923+
predictionsB = np.array(arff_content2)[:, -2:]
924924

925925
np.testing.assert_array_equal(predictionsA, predictionsB)

0 commit comments

Comments
 (0)