Skip to content

Commit 7f1f13b

Browse files
authored
== -> isequal for missing test
1 parent cb8d34e commit 7f1f13b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/arrays.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ using Test
3838
# If you need a hint, see https://julialang.org/blog/2018/08/union-splitting/
3939
v = alternate_items(10^4, missing, 4)
4040
vbadm = alternate_items_bad(10^4, missing, 4)
41-
@test v == vbadm
41+
@test isequal(v, vbadm)
4242
@test @inferred(sum(skipmissing(v))) == 4*10^4
4343
# Note: while this example is artificial, there turn out
4444
# to be *many* cases where you want to create a struct that can hold

0 commit comments

Comments
 (0)