diff --git a/base/exports.jl b/base/exports.jl index c2918ddce222e..ee058e510d212 100644 --- a/base/exports.jl +++ b/base/exports.jl @@ -497,10 +497,6 @@ export colon, conj!, copy!, - cummax, - cummax!, - cummin, - cummin!, cumprod, cumprod!, cumsum, diff --git a/test/arrayops.jl b/test/arrayops.jl index 76ef30f359937..077c2d17d3f04 100644 --- a/test/arrayops.jl +++ b/test/arrayops.jl @@ -1898,7 +1898,6 @@ end if eltype(arr) in [Int, Float64] # eltype of out easy out = similar(arr) - @test out ≉ accumulate_arr @test accumulate!(op, out, arr) ≈ accumulate_arr @test out ≈ accumulate_arr end