Skip to content

Commit

Permalink
Fix use of Base.Test for recent move to stdlib
Browse files Browse the repository at this point in the history
  • Loading branch information
ararslan committed Oct 3, 2017
1 parent 10e776c commit 9a52ccc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
using FFTW
using FFTW: fftw_vendor
using AbstractFFTs: Plan, plan_inv
using Base.Test

if isdefined(Base, :Test) && !Base.isdeprecated(Base, :Test)
using Base.Test
else
using Test
end

# Base Julia issue #19892
# (test this first to make sure it happens before set_num_threads)
Expand Down

0 comments on commit 9a52ccc

Please sign in to comment.