Skip to content

Commit 790f2cc

Browse files
committed
Fixed errant parameter in resample test
1 parent 022dd7d commit 790f2cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/resample.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ ratio = 3.141592653589793
5252
cycles = 2
5353
tx = linspace(0, cycles, 1000)
5454
x = sinpi(2*tx)
55-
y = resample(x, ratio, 32)
55+
y = resample(x, ratio)
5656
yLen = length(y)
5757
ty = linspace(0, cycles, yLen)
5858
yy = sinpi(2*ty)

0 commit comments

Comments
 (0)