Skip to content

Commit 163aab0

Browse files
cleanup
1 parent 8922cda commit 163aab0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/datasets/misc.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ end
5858
@test !any(haskey.(test_x, :mutagenic))
5959
@test !any(haskey.(val_x, :mutagenic))
6060
# test data is materialized
61-
@show typeof(train_x)
6261
@test train_x isa Vector{<:Dict}
6362
@test test_x isa Vector{<:Dict}
6463
@test val_x isa Vector{<:Dict}
6564

6665
x, y = dtrain[1:2]
66+
@show typeof(x) typeof(y)
6767
@test x isa Vector{Dict{Symbol, Any}}
68-
# @test length(x) == 2
69-
# @test y isa Vector{Int}
70-
# @test length(y) == 2
68+
@test length(x) == 2
69+
@test y isa Vector{Int}
70+
@test length(y) == 2
7171
end
7272

7373
@testset "Titanic" begin

0 commit comments

Comments
 (0)