From 7b3d9556fa20092c9da283cf7d18c13ed9006a90 Mon Sep 17 00:00:00 2001 From: Ilya Mochalov Date: Fri, 13 Feb 2015 21:27:52 +0500 Subject: [PATCH] Fix the test of Lazy.js definitions --- lazy.js/lazy.js-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lazy.js/lazy.js-tests.ts b/lazy.js/lazy.js-tests.ts index f719a90a9..cab0787c3 100644 --- a/lazy.js/lazy.js-tests.ts +++ b/lazy.js/lazy.js-tests.ts @@ -156,7 +156,7 @@ obj = fooSequence.toObject(); // ArrayLikeSequence -fooArraySeq = fooArraySeq.concat(); +fooArraySeq = fooArraySeq.concat(fooArr); fooArraySeq = fooArraySeq.first(); fooArraySeq = fooArraySeq.first(num); foo = fooArraySeq.get(num);