From a895bbb0983e9773f47ba90f31d1baa93ca18f93 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Tue, 19 Oct 2010 15:50:02 -0400 Subject: [PATCH] fixing chain() test. --- test/collection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/collection.js b/test/collection.js index ae0cd3c8..17cacee0 100644 --- a/test/collection.js +++ b/test/collection.js @@ -99,7 +99,7 @@ $(document).ready(function() { .filter(function(o){ return o.id % 2 === 0; }) .map(function(o){ return o.id * 2; }) .value(), - [8, 4]); + [4, 8]); }); test("Collection: refresh", function() {