Skip to content

Commit d855a51

Browse files
committed
repairing unit tests
1 parent 39b2e38 commit d855a51

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_flows/test_sklearn.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ def test_serialize_model_with_subcomponent(self):
101101
fixture_name = 'sklearn.ensemble.weight_boosting.AdaBoostClassifier' \
102102
'(base_estimator=sklearn.tree.tree.DecisionTreeClassifier)'
103103
fixture_class_name = 'sklearn.ensemble.weight_boosting.AdaBoostClassifier'
104-
fixture_description = 'Automatically created sub-component.'
104+
fixture_description = 'Automatically created scikit-learn flow.'
105105
fixture_subcomponent_name = 'sklearn.tree.tree.DecisionTreeClassifier'
106106
fixture_subcomponent_class_name = 'sklearn.tree.tree.DecisionTreeClassifier'
107-
fixture_subcomponent_description = 'Automatically created sub-component.'
107+
fixture_subcomponent_description = 'Automatically created scikit-learn flow.'
108108

109109
serialization = sklearn_to_flow(model)
110110

@@ -147,7 +147,7 @@ def test_serialize_pipeline(self):
147147
fixture_name = 'sklearn.pipeline.Pipeline(' \
148148
'scaler=sklearn.preprocessing.data.StandardScaler,' \
149149
'dummy=sklearn.dummy.DummyClassifier)'
150-
fixture_description = 'Automatically created sub-component.'
150+
fixture_description = 'Automatically created scikit-learn flow.'
151151

152152
serialization = sklearn_to_flow(model)
153153

0 commit comments

Comments
 (0)