We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38573b6 commit 674351eCopy full SHA for 674351e
1 file changed
test/abstractarray.jl
@@ -997,9 +997,9 @@ end
997
end
998
999
i = CartesianIndex(17,-2)
1000
- @test CR .+ i === i .+ CR === CartesianIndices((19:21, -1:3)) == collect(CR .+ i)
+ @test CR .+ i === i .+ CR === CartesianIndices((19:21, -1:3)) == collect(CR) .+ i
1001
@test CR .- i === CartesianIndices((-15:-13, 3:7)) == collect(CR) .- i
1002
- @test collect(i .- CR) == Ref(i) .- collect(CR)
+ @test collect(i .- CR) == Ref(i) .- collect(CR) == i .- collect(CR)
1003
1004
1005
@testset "issue #25770" begin
0 commit comments