Skip to content

Commit cf112e7

Browse files
committed
fix the problem with julia nightly
1 parent 474b9d9 commit cf112e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/broadcasting.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1067,7 +1067,7 @@ end
10671067
end
10681068

10691069
@testset "test categorical values" begin
1070-
for v in [categorical([1, 2, 3]), categorical([1, 2, missing]),
1070+
for v in Any[categorical([1, 2, 3]), categorical([1, 2, missing]),
10711071
categorical([missing, 1, 2]),
10721072
categorical(["1", "2", "3"]), categorical(["1", "2", missing]),
10731073
categorical([missing, "1", "2"])]

test/transpose.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ end
409409
@test isa(uds[!,:b].val, Vector{Union{Int,Missing}})
410410
@test isa(uds[!,:c].val, Vector{Union{Int,Missing}})
411411
@test isa(uds[!,:d].val, Vector{Union{Int,Missing}})
412-
ds = Dataset([categorical(repeat(2:-1:1, inner=4)),
412+
ds = Dataset(Any[categorical(repeat(2:-1:1, inner=4)),
413413
categorical(repeat('a':'d', outer=2)), categorical(1:8)],
414414
[:id, :variable, :value])
415415

0 commit comments

Comments
 (0)