Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
americast committed Nov 17, 2023
1 parent 8d2d5ef commit 2d38124
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/integration_tests/long/test_model_forecasting.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ def test_forecast(self):
"airforecast.y",
"airforecast.y-lo",
"airforecast.y-hi",
"plot",
],
)

Expand All @@ -122,7 +123,7 @@ def test_forecast_neuralforecast(self):
execute_query_fetch_all(self.evadb, create_predict_udf)

predict_query = """
SELECT AirPanelForecast() order by y;
SELECT AirPanelForecast(FALSE) order by y;
"""
result = execute_query_fetch_all(self.evadb, predict_query)
self.assertEqual(len(result), 24)
Expand Down Expand Up @@ -167,6 +168,7 @@ def test_forecast_with_column_rename(self):
"homeforecast.ma",
"homeforecast.ma-lo",
"homeforecast.ma-hi",
"plot",
],
)

Expand Down

0 comments on commit 2d38124

Please sign in to comment.