From 8fc69fdca32031e886a440e198786c69c3390f76 Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Sat, 22 Aug 2015 18:48:48 -0700 Subject: [PATCH] Fix typo in test for bonfire Drop It --- challenges/intermediate-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/intermediate-bonfires.json b/challenges/intermediate-bonfires.json index dd7c55495e..8543105b9f 100644 --- a/challenges/intermediate-bonfires.json +++ b/challenges/intermediate-bonfires.json @@ -683,7 +683,7 @@ "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, 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": [ "Arguments object",