Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit 0a4ca83

Browse files
authored
Fix breaking unit tests. (#440)
1 parent 452cb5b commit 0a4ca83

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/python/nimbusml.pyproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,7 @@
738738
<Compile Include="nimbusml\tests\preprocessing\test_tostring.py" />
739739
<Compile Include="nimbusml\tests\preprocessing\text\test_wordtokenizer.py" />
740740
<Compile Include="nimbusml\tests\test_csr_matrix_output.py" />
741+
<Compile Include="nimbusml\tests\test_fit_graph.py" />
741742
<Compile Include="nimbusml\tests\test_variable_column.py" />
742743
<Compile Include="nimbusml\tests\timeseries\test_iidchangepointdetector.py" />
743744
<Compile Include="nimbusml\tests\timeseries\test_ssaforecaster.py" />

src/python/nimbusml/tests/pipeline/test_pipeline_split_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def test_notvectorized_output_predictor_model(self):
4747

4848
# Create and fit a combined model and spit out predictor model
4949
combined_pipeline = Pipeline([RangeFilter(min=0.0, max=4.5) << 'c2',
50-
OnlineGradientDescentRegressor(label='c2')],
50+
OnlineGradientDescentRegressor(feature=['c1'], label='c2')],
5151
random_state=seed)
5252
combined_pipeline.fit(df, output_predictor_model=True)
5353
result_1 = combined_pipeline.predict(df)

0 commit comments

Comments
 (0)