We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a283df8 commit c232ef2Copy full SHA for c232ef2
1 file changed
tests/test_utils/test_utils.py
@@ -21,7 +21,8 @@ def mocked_perform_api_call(call):
21
def test_list_all(self):
22
openml.utils._list_all(openml.tasks.functions._list_tasks)
23
24
- @mock.patch('openml._api_calls._perform_api_call', side_effect=mocked_perform_api_call)
+ @mock.patch('openml._api_calls._perform_api_call',
25
+ side_effect=mocked_perform_api_call)
26
def test_list_all_few_results_available(self, _perform_api_call):
27
# we want to make sure that the number of api calls is only 1.
28
# Although we have multiple versions of the iris dataset, there is only
0 commit comments