Skip to content

Commit

Permalink
fix: remove dims
Browse files Browse the repository at this point in the history
  • Loading branch information
ymtoo committed Aug 28, 2023
1 parent 586b473 commit 6f04847
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -549,9 +549,9 @@ end
@test framerate(x1) == 3 * framerate(x) / 2
x1 = resample(x, 3//2)
@test framerate(x1) == 3 * framerate(x) / 2
x1 = resample([x x], 3//2; dims=1)
x1 = resample([x x], 3//2)
@test framerate(x1) == 3 * framerate(x) / 2
x1 = resample([x x], 3//2, [1,1,1]; dims=1)
x1 = resample([x x], 3//2, [1,1,1])
@test framerate(x1) == 3 * framerate(x) / 2

x = signal(randn(rng, 100), 10kHz)
Expand Down

0 comments on commit 6f04847

Please sign in to comment.