Skip to content

Commit b28691d

Browse files
committed
Fix reducedim test
1 parent 55a9bda commit b28691d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/reducedim.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,5 +343,5 @@ under_test = [UInt8, Int8, Int32, Int64, BigInt]
343343
@testset "type of sum(::Array{$T}" for T in under_test
344344
result = sum(T[1 2 3; 4 5 6; 7 8 9], 2)
345345
@test result == hcat([6, 15, 24])
346-
@test eltype(result) === typeof(Base.promote_sys_size(zero(T)))
346+
@test eltype(result) === typeof(Base.promote_sys_size_add(zero(T)))
347347
end

0 commit comments

Comments
 (0)