diff --git a/test/runtests.jl b/test/runtests.jl index ed372d7ab9..526d95a193 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -5,10 +5,6 @@ using Logging include("utilities.jl") -@testset "Simple operation" begin - include("simple_op_test.jl") -end - @testset "Expr manipulation" begin include("expression_manipulation_test.jl") end diff --git a/test/simple_op_test.jl b/test/simple_op_test.jl deleted file mode 100644 index 1ac66431ce..0000000000 --- a/test/simple_op_test.jl +++ /dev/null @@ -1,4 +0,0 @@ -@test simple_operation(2.0, 3.0) == 5 -@test simple_operation(2.1, 3.1)==5.2 -@test simple_operation(21.0, 31.0)== 52.0 -@test simple_operation(73.0, 35.0)== 108.0