diff --git a/test/fftBigFloattests.jl b/test/fftBigFloattests.jl deleted file mode 100644 index 04040571..00000000 --- a/test/fftBigFloattests.jl +++ /dev/null @@ -1,9 +0,0 @@ -using DSP, FastTransforms, Test - -@testset "BigFloat Convolution" begin - s = big(1) ./ (1:10) - s64 = Float64.(s) - @test Float64.(conv(s, s)) ≈ conv(s64, s64) - @test s == big(1) ./ (1:10) #67, ensure conv doesn't overwrite input - @test all(s64 .=== Float64.(big(1) ./ (1:10))) -end diff --git a/test/runtests.jl b/test/runtests.jl index 33c88fd1..8a3790a7 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -5,7 +5,6 @@ include("chebyshevtests.jl") include("quadraturetests.jl") include("libfasttransformstests.jl") include("nuffttests.jl") -include("fftBigFloattests.jl") include("paduatests.jl") include("gaunttests.jl") include("hermitetests.jl")