Skip to content

Commit

Permalink
TEst deterministic seasonal
Browse files Browse the repository at this point in the history
  • Loading branch information
tingiskhan committed Nov 2, 2024
1 parent 55c8a8d commit 106d03c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_union.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def test_union():

llt = LocalLinearTrend(n, np.array([0.05, 1e-3]), np.zeros(2))
ar = AutoRegressive(n, 0.99, 0.05, 1)
seasonal = periodic.TimeSeasonal(n, 5, 0.05, np.zeros(4))
seasonal = periodic.TimeSeasonal(n, 5, 0.05, np.zeros(4)).deterministic()

combined = llt.union(ar).union(seasonal)

Expand All @@ -19,5 +19,3 @@ def test_union():

assert samples.shape == combined.event_shape
assert combined.event_shape[-1] == 7


0 comments on commit 106d03c

Please sign in to comment.