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 fdd4e0a commit 9c6950fCopy full SHA for 9c6950f
1 file changed
tests/test_apiconnector.py
@@ -229,9 +229,6 @@ def check_run(run):
229
self.assertEqual(len(run), 6)
230
231
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
235
self.assertGreaterEqual(len(runs), 800)
236
for run in runs:
237
check_run(run)
@@ -242,7 +239,7 @@ def check_run(run):
242
239
243
240
244
241
runs = self.connector.get_runs_list(setup_id=1)
245
- self.assertGreaterEqual(len(runs), 261)
+ self.assertGreaterEqual(len(runs), 260)
246
247
248
0 commit comments