Skip to content

Commit

Permalink
Reverted to original test specification (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanGrimstead authored and thanasions committed Mar 25, 2019
1 parent 3e79e16 commit 7cb725c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/algorithms/test_arima.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def test_static_sequence(self):
def test_linearly_increasing_sequence(self):
time_series = [8.9, 11.0, 13.0, 15.1, 17.0, 18.9, 21.0]
num_predicted_periods = 4
expected_prediction = [21.0, 20.0, 20.0, 19.0]
expected_prediction = [23.0, 25.0, 27.0, 29.0]
arima = ARIMAForecast(time_series, num_predicted_periods)

actual_prediction = arima.predict_counts()
Expand Down

0 comments on commit 7cb725c

Please sign in to comment.