From 9651ff1837599198d3e3ed8d2df3ace4458edce7 Mon Sep 17 00:00:00 2001 From: MCMan Date: Mon, 31 Aug 2015 11:25:47 -0500 Subject: [PATCH] fixed some typos, missplaced parenthesis on largestOfFour tests Cannot read property 'eql' in undefined - Bonfire: Return Largest Numbers in Arrays #2890 #2874 #2876 #2882 #2883 #2889 #2926 #2919 --- seed/challenges/basic-bonfires.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed/challenges/basic-bonfires.json b/seed/challenges/basic-bonfires.json index 480b927d4154e8..7062c7bf10a21b 100644 --- a/seed/challenges/basic-bonfires.json +++ b/seed/challenges/basic-bonfires.json @@ -270,8 +270,8 @@ ], "tests": [ "expect(largestOfFour([[4, 5, 1, 3], [13, 27, 18, 26], [32, 35, 37, 39], [1000, 1001, 857, 1]])).to.be.a('array');", - "(largestOfFour([[13, 27, 18, 26], [4, 5, 1, 3], [32, 35, 37, 39], [1000, 1001, 857, 1]])).should.eql([27,5,39,1001]);", - "assert(largestOfFour([[4, 9, 1, 3], [13, 35, 18, 26], [32, 35, 97, 39], [1000000, 1001, 857, 1]]).should.eql([9,35,97,1000000]));" + "assert(largestOfFour([[13, 27, 18, 26], [4, 5, 1, 3], [32, 35, 37, 39], [1000, 1001, 857, 1]])).should.eql([27,5,39,1001]);", + "assert(largestOfFour([[4, 9, 1, 3], [13, 35, 18, 26], [32, 35, 97, 39], [1000000, 1001, 857, 1]])).should.eql([9,35,97,1000000]);" ], "MDNlinks": [ "Comparison Operators"