We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed2db6c commit 099eafcCopy full SHA for 099eafc
test/test_blockindices.jl
@@ -418,9 +418,15 @@ end
418
@test eltype(blockedrange(Base.OneTo(elt(3)))) === elt
419
@test eltype(blockedrange(elt(1):elt(3))) === elt
420
421
- r = blockedrange(Fill(elt(2), 3))
422
- @test r isa BlockedUnitRange{elt,<:StepRangeLen{elt}}
423
- @test eltype(r) === elt
+ if VERSION >= v"1.7"
+ # `cumsum(::Fill)` doesn't preserve element types properly.
+ # That issue was fixed by this fix to `StepRangeLen`:
424
+ # https://github.com/JuliaLang/julia/pull/41619
425
+ # which is only available in Julia v1.7 and higher.
426
+ r = blockedrange(Fill(elt(2), 3))
427
+ @test r isa BlockedUnitRange{elt,<:StepRangeLen{elt}}
428
+ @test eltype(r) === elt
429
+ end
430
431
r = blockedrange(Ones(elt, 3))
432
@test r isa BlockedUnitRange{elt}
0 commit comments