Skip to content

Commit bd35213

Browse files
committed
Work around Base.Test move to stdlib
1 parent 6b27be4 commit bd35213

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/runtests.jl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# This file contains code that was formerly a part of Julia. License is MIT: http://julialang.org/license
22

33
using SpecialFunctions
4-
using Base.Test
4+
5+
if isdefined(Base, :Test) && !Base.isdeprecated(Base, :Test)
6+
using Base.Test
7+
else
8+
using Test
9+
end
510

611
const SF = SpecialFunctions
712

0 commit comments

Comments
 (0)