From f0880f89ccd9d8875d7ee70b76115411031f849a Mon Sep 17 00:00:00 2001 From: Mike J Innes Date: Mon, 5 Jun 2017 19:16:24 +0100 Subject: [PATCH] fix --- test/batching.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/batching.jl b/test/batching.jl index a68b9d6c..222c1b79 100644 --- a/test/batching.jl +++ b/test/batching.jl @@ -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