Fix typo in test for bonfire Drop It

This commit is contained in:
Nathan Scott
2015-08-22 18:48:48 -07:00
committed by Berkeley Martinez
parent d2cec5e1b2
commit 8fc69fdca3

View File

@ -683,7 +683,7 @@
"expect(drop([1, 2, 3, 4], function(n) {return n >= 3; })).to.eqls([3, 4]);", "expect(drop([1, 2, 3, 4], function(n) {return n >= 3; })).to.eqls([3, 4]);",
"expect(drop([1, 2, 3], function(n) {return n > 0; })).to.eqls([1, 2, 3]);", "expect(drop([1, 2, 3], function(n) {return n > 0; })).to.eqls([1, 2, 3]);",
"expect(drop([1, 2, 3, 4], function(n) {return n > 5; })).to.eqls([]);", "expect(drop([1, 2, 3, 4], function(n) {return n > 5; })).to.eqls([]);",
"expect(drop([1, 2, 3, 7, 4], function(n) { return > 5; })).to.equals([7, 4]);" "expect(drop([1, 2, 3, 7, 4], function(n) { return > 5; })).to.eqls([7, 4]);"
], ],
"MDNlinks": [ "MDNlinks": [
"Arguments object", "Arguments object",