Skip to content

Commit 9c6950f

Browse files
committed
FIX test_download_run_list had wrong constant
1 parent fdd4e0a commit 9c6950f

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

tests/test_apiconnector.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,6 @@ def check_run(run):
229229
self.assertEqual(len(run), 6)
230230

231231
runs = self.connector.get_runs_list(task_id=1)
232-
# 1759 as the number of supervised classification tasks retrieved
233-
# openml.org from this call; don't trust the number on openml.org as
234-
# it also counts private datasets
235232
self.assertGreaterEqual(len(runs), 800)
236233
for run in runs:
237234
check_run(run)
@@ -242,7 +239,7 @@ def check_run(run):
242239
check_run(run)
243240

244241
runs = self.connector.get_runs_list(setup_id=1)
245-
self.assertGreaterEqual(len(runs), 261)
242+
self.assertGreaterEqual(len(runs), 260)
246243
for run in runs:
247244
check_run(run)
248245

0 commit comments

Comments
 (0)