Skip to content

Commit b5f605b

Browse files
committed
typo fix
1 parent 89a1f9c commit b5f605b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/operators/forecast/test_datasets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def test_pandas_to_historical_test(model):
214214

215215
# CostAD
216216
@pytest.mark.parametrize("model", ["prophet", "neuralprophet"])
217-
def test_pandas_to_historical_test(model):
217+
def test_pandas_to_historical_test2(model):
218218
df = pd.read_csv(f"{DATASET_PREFIX}dataset5.csv")
219219
df_train = df[:-1]
220220
df_test = df[-1:]
@@ -238,7 +238,7 @@ def test_pandas_to_historical_test(model):
238238
results = forecast_operate(operator_config)
239239
# check_output_for_errors(output_data_path)
240240
test_metrics = pd.read_csv(f"{output_data_path}/metrics.csv")
241-
df1 = results.get_test_data()
241+
df1 = results.get_test_metrics()
242242
df2 = results.get_forecast()
243243

244244

0 commit comments

Comments
 (0)