This commit is contained in:
Mike J Innes 2017-06-05 19:16:24 +01:00
parent 2fcf938df7
commit f0880f89cc

View File

@ -10,7 +10,7 @@ bs = Batch([[1,2,3],[4,5,6]])
batchseq = Batch([Seq([[1,2,3],[4,5,6]]),Seq([[7,8,9],[10,11,12]])])
@test batchseq == [[[1,2,3],[4,5,6]]]
@test batchseq == [[[1,2,3],[4,5,6]],[[7,8,9],[10,11,12]]]
@test rawbatch(batchseq)[1,1,3] == 3
@test rawbatch(batchseq)[2,2,1] == 10