Skip to content

Commit

Permalink
Fix CI on nightly (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
nalimilan authored Jan 25, 2021
1 parent cde22c4 commit f11436a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ struct CubeRooter end
iobuf = IOBuffer()
show(iobuf, MIME("text/plain"), mx)
s = String(take!(iobuf))
@test s == "Missings.SkipMissings{Array{Union{Missing, $Int},1}}(" *
@test s == "Missings.SkipMissings{$(Vector{Union{Missing, Int}})}(" *
"Union{Missing, $Int}[1, 2, missing, 4]) comprised of 2 iterators"
@test collect(mx) == [1, 2]
@test collect(mx) isa Vector{Int}
Expand Down

0 comments on commit f11436a

Please sign in to comment.