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 053b6c2 commit f03f76eCopy full SHA for f03f76e
test/test_automl/test_automl.py
@@ -1053,7 +1053,9 @@ def test_fit_performs_dataset_compression_without_precision_with_int(
1053
auto.fit(X, y, only_return_configuration_space=True)
1054
1055
assert mock_reduce_dataset.call_count == 1
1056
- assert mock_reduce_dataset.call_args.call_args["operations"] == ["subsample"]
+
1057
+ args, kwargs = mock_reduce_dataset.call_args
1058
+ assert kwargs["operations"] == ["subsample"]
1059
1060
1061
@pytest.mark.parametrize("dataset_compression", [True])
0 commit comments