Skip to content

Commit

Permalink
Fix 32-bit failure
Browse files Browse the repository at this point in the history
  • Loading branch information
nalimilan committed Jul 1, 2023
1 parent f8c21aa commit ca0d01f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ end
@test quantile(Float32[-1e15, -1e14, -1e13, -1e12, -1e11, -1e10, -1e9, 100], 1) 100
@test quantile(Int8[-68, 60], 0.5) -4
@test quantile(Int32[-1e9, 2e9], 1.0) 2.0e9
@test quantile(Int[-5e18, -2e18, 9e18], 1.0) 9.0e18
@test quantile(Int64[-5e18, -2e18, 9e18], 1.0) 9.0e18
end

@testset "variance of complex arrays (#13309)" begin
Expand Down

0 comments on commit ca0d01f

Please sign in to comment.