diff --git a/tests/test_algebra_custom_model_sub_estimator.py b/tests/test_algebra_custom_model_sub_estimator.py index 07b1f992f..f3472b394 100644 --- a/tests/test_algebra_custom_model_sub_estimator.py +++ b/tests/test_algebra_custom_model_sub_estimator.py @@ -370,7 +370,6 @@ def custom_classifier_converter(scope, operator, container): class TestCustomModelAlgebraSubEstimator(unittest.TestCase): def check_transform(self, obj, X): - self.log.debug("[check_transform------] type(obj)=%r" % type(obj)) expected = obj.transform(X) onx = to_onnx(obj, X, target_opset=TARGET_OPSET) try: @@ -384,7 +383,6 @@ def check_transform(self, obj, X): assert_almost_equal(expected, got, decimal=5) def check_classifier(self, obj, X): - self.log.debug("[check_classifier------] type(obj)=%r" % type(obj)) expected_labels = obj.predict(X) expected_probas = obj.predict_proba(X) onx = to_onnx(obj, X, target_opset=TARGET_OPSET,