diff --git a/seed/challenges/intermediate-bonfires.json b/seed/challenges/intermediate-bonfires.json index bc1578db379..dd7c55495ee 100644 --- a/seed/challenges/intermediate-bonfires.json +++ b/seed/challenges/intermediate-bonfires.json @@ -682,7 +682,8 @@ "tests": [ "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, 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]);" ], "MDNlinks": [ "Arguments object",