Skip to content

Commit

Permalink
Fix reducedim test
Browse files Browse the repository at this point in the history
  • Loading branch information
TotalVerb committed Oct 6, 2017
1 parent 55a9bda commit b28691d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/reducedim.jl
Original file line number Diff line number Diff line change
Expand Up @@ -343,5 +343,5 @@ under_test = [UInt8, Int8, Int32, Int64, BigInt]
@testset "type of sum(::Array{$T}" for T in under_test
result = sum(T[1 2 3; 4 5 6; 7 8 9], 2)
@test result == hcat([6, 15, 24])
@test eltype(result) === typeof(Base.promote_sys_size(zero(T)))
@test eltype(result) === typeof(Base.promote_sys_size_add(zero(T)))
end

0 comments on commit b28691d

Please sign in to comment.