Skip to content

Commit 3c6e945

Browse files
committed
merge error in unit test
1 parent 90ffb9b commit 3c6e945

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/operators/forecast/test_errors.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,8 +914,9 @@ def test_prophet_floor_cap(operator_setup, model):
914914
yaml_i["spec"]["model"] = model
915915
yaml_i["spec"]["historical_data"] = {"format": "pandas"}
916916
yaml_i["spec"]["datetime_column"]["name"] = HISTORICAL_DATETIME_COL.name
917-
yaml_i["spec"]["output_directory"]["url"] = operator_setup
917+
# yaml_i["spec"]["output_directory"]["url"] = operator_setup
918918
yaml_i["spec"]["target_column"] = "target"
919+
yaml_i["spec"]["model_kwargs"] = {"min": 0, "max": 20}
919920

920921
target_column = pd.Series(np.arange(20, -6, -2), name="target")
921922
df = pd.concat(

0 commit comments

Comments
 (0)