Skip to content

Commit d919989

Browse files
committed
Improve the test case
1 parent 5192b0b commit d919989

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

test/write.jl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,8 @@ test_write(sd)
131131
test_compression_effective(Dict("data" => fill(1.0, 1000)))
132132

133133
# test adjoint/reshape array
134-
test_write(Dict("aa"=>[1 2 3;4 5 6;7 8 9]'))
135-
test_write(Dict("aa"=>reshape([1 2 3;4 5 6;7 8 9]',1,9)))
134+
test_write(Dict("adjoint_arr"=>[1 2 3;4 5 6;7 8 9]'))
135+
test_write(Dict("reshape_arr"=>reshape([1 2 3;4 5 6;7 8 9]',1,9)))
136+
137+
test_write(Dict("adjoint_arr"=>Any[1 2 3;4 5 6;7 8 9]'))
138+
test_write(Dict("reshape_arr"=>reshape(Any[1 2 3;4 5 6;7 8 9]',1,9)))

0 commit comments

Comments
 (0)