diff --git a/REQUIRE b/REQUIRE index a147060..a352d47 100644 --- a/REQUIRE +++ b/REQUIRE @@ -1,5 +1,4 @@ julia 0.5 -BaseTestNext ForwardDiff LightXML 0.4 HDF5 0.7 diff --git a/src/JuliaFEM.jl b/src/JuliaFEM.jl index 487dad1..47d6471 100644 --- a/src/JuliaFEM.jl +++ b/src/JuliaFEM.jl @@ -23,11 +23,7 @@ export info, debug module Testing - if VERSION >= v"0.5-" - using Base.Test - else - using BaseTestNext - end + using Base.Test export @test, @testset, @test_throws diff --git a/src/test.jl b/src/test.jl deleted file mode 100644 index 2dfd955..0000000 --- a/src/test.jl +++ /dev/null @@ -1,11 +0,0 @@ -# This file is a part of JuliaFEM. -# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md - -if VERSION >= v"0.5-dev+7720" - using Base.Test -else - using BaseTestNext - const Test = BaseTestNext -end - -export @test, @testset, @test_throws