Skip to content

Commit

Permalink
Fix random construction in stumpy integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
wence- committed Dec 3, 2024
1 parent 9c3ceb9 commit 96bc1d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def test_multidimensional_distributed_timeseries(dask_client):
rng = np.random.default_rng(seed=42)
# Each row represents data from a different dimension while each column represents
# data from the same dimension
your_time_series = rng.random(3, 1000)
your_time_series = rng.random(size=(3, 1000))
# Approximately, how many data points might be found in a pattern
window_size = 50

Expand Down

0 comments on commit 96bc1d1

Please sign in to comment.