We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb8d34e commit 7f1f13bCopy full SHA for 7f1f13b
test/arrays.jl
@@ -38,7 +38,7 @@ using Test
38
# If you need a hint, see https://julialang.org/blog/2018/08/union-splitting/
39
v = alternate_items(10^4, missing, 4)
40
vbadm = alternate_items_bad(10^4, missing, 4)
41
- @test v == vbadm
+ @test isequal(v, vbadm)
42
@test @inferred(sum(skipmissing(v))) == 4*10^4
43
# Note: while this example is artificial, there turn out
44
# to be *many* cases where you want to create a struct that can hold
0 commit comments