Skip to content

Commit eb41f88

Browse files
committed
Fix concat' test on node 0.10
1 parent a0da6ad commit eb41f88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Main.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ testFill = do
116116
testConcat' :: Test
117117
testConcat' = do
118118
bufs <- traverse fromArray $ map (\x -> [x, x+1, x+2]) [0,3,6,9,12]
119-
buf <- concat' bufs 10
119+
buf <- concat' bufs 15
120120
out <- toArray buf
121121

122-
assertEq [0,1,2,3,4,5,6,7,8,9] out
122+
assertEq [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14] out
123123

124124
assertEq :: forall a. (Eq a, Show a) => a -> a -> Test
125125
assertEq x y =

0 commit comments

Comments
 (0)