Skip to content

Commit 80ea8ba

Browse files
committed
Fix tests
1 parent 599298a commit 80ea8ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/testsuite/jld2ext.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ using Test
1818
y = JLD2.load_object(file)
1919

2020
# Verify the loaded array matches the original
21-
@test y isa Array{ET, length(dims)}
21+
@test y isa AT{ET, length(dims)}
2222
@test size(y) == size(x)
23-
@test Array(x) y
23+
@test AT(x) y
2424
end
2525
end
2626
end

0 commit comments

Comments
 (0)