fixing chain() test.

This commit is contained in:
Jeremy Ashkenas
2010-10-19 15:50:02 -04:00
parent 8d7eff8cd2
commit a895bbb098

View File

@@ -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() {