Skip to content

Commit

Permalink
Use Test or Base.Test depending on Julia version
Browse files Browse the repository at this point in the history
  • Loading branch information
martinholters committed Oct 9, 2017
1 parent c68bcbe commit ada738d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
# See accompanying license file.

using ACME
using Base.Test
if VERSION < v"0.7.0-DEV.2005"
using Base.Test
else
using Test
end
using Compat
using ProgressMeter

Expand Down

0 comments on commit ada738d

Please sign in to comment.