From 11f03f1f8466d5050eed92887bdfa8f7d91c86b6 Mon Sep 17 00:00:00 2001 From: Jan Weidner Date: Sun, 16 Oct 2016 10:56:18 +0200 Subject: [PATCH] fixup --- base/exports.jl | 4 ---- test/arrayops.jl | 1 - 2 files changed, 5 deletions(-) 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