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 457069d commit a05553cCopy full SHA for a05553c
test/broadcast.jl
@@ -594,7 +594,7 @@ end
594
@testset "broadcasting falls back to iteration (issues #26421, #19577, #23746)" begin
595
@test_throws ArgumentError broadcast(identity, Dict(1=>2))
596
@test_throws ArgumentError broadcast(identity, (a=1, b=2))
597
- @test_throws ArgumentError length.(Dict(1 => IntSet(1:2), 2 => IntSet(1:3)))
+ @test_throws ArgumentError length.(Dict(1 => BitSet(1:2), 2 => BitSet(1:3)))
598
@test_throws MethodError broadcast(identity, Base)
599
600
@test broadcast(identity, Iterators.filter(iseven, 1:10)) == 2:2:10
0 commit comments