Skip to content

Commit f8167be

Browse files
committed
Switch tuple to array
1 parent 8e8a602 commit f8167be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TestUtils.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ function test_fft_backend(ArrayType=Array; test_real=true, test_inplace=true)
108108
P = plan_bfft(similar(y), dims)
109109
@test mul!(similar(x_complexfloat), P, copy(y)) fftw_bfft
110110
plans_to_test = if test_inplace
111-
[P, plan_bfft!(similar(y), dims)]
111+
(P, plan_bfft!(similar(y), dims))
112112
else
113-
[P]
113+
(P,)
114114
end
115115
for P in plans_to_test
116116
@test eltype(P) <: Complex

0 commit comments

Comments
 (0)