Skip to content

Commit a190f32

Browse files
committed
lowered flow list requirement in unit test
1 parent 4c62739 commit a190f32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_flows/test_flow_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_list_flows(self):
2525
# data from the internet...
2626
flows = openml.flows.list_flows()
2727
# 3000 as the number of flows on openml.org
28-
self.assertGreaterEqual(len(flows), 3000)
28+
self.assertGreaterEqual(len(flows), 1500)
2929
for fid in flows:
3030
self._check_flow(flows[fid])
3131

0 commit comments

Comments
 (0)