Skip to content

Commit

Permalink
fix unit ttest
Browse files Browse the repository at this point in the history
  • Loading branch information
Joaquin Amat committed Jul 31, 2024
1 parent 52fa106 commit b38fb78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions skforecast/preprocessing/test/test_exog_long_to_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ def test_check_output_series_long_to_dict_dropna_False():
'exog_2': 'b',
'exog_3': np.nan
},
index=pd.date_range("2020-01-01", periods=n_exog_A, freq="D")
index=pd.date_range("2020-01-01", periods=n_exog_B, freq="D")
),
'C': pd.DataFrame(
{
'exog_1': np.arange(n_exog_C),
'exog_2': np.nan,
'exog_3': 1.0
},
index=pd.date_range("2020-01-01", periods=n_exog_A, freq="D")
index=pd.date_range("2020-01-01", periods=n_exog_C, freq="D")
)
}

Expand Down

0 comments on commit b38fb78

Please sign in to comment.