From a3e50050587c6585a397483ec9373d27a9ede0f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Djordje=20Lacmanovi=C4=87?= Date: Tue, 4 Aug 2015 16:51:10 +0200 Subject: [PATCH] fixed issue #1511 - now checking for words longer than 9 chars closes #1511 --- seed/challenges/basic-bonfires.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/seed/challenges/basic-bonfires.json b/seed/challenges/basic-bonfires.json index 8d97403e21..8fb64bc1c8 100644 --- a/seed/challenges/basic-bonfires.json +++ b/seed/challenges/basic-bonfires.json @@ -231,7 +231,8 @@ "expect(findLongestWord('The quick brown fox jumped over the lazy dog')).to.equal(6);", "expect(findLongestWord('May the force be with you')).to.equal(5);", "expect(findLongestWord('Google do a barrel roll')).to.equal(6);", - "expect(findLongestWord('What is the average airspeed velocity of an unladen swallow')).to.equal(8);" + "expect(findLongestWord('What is the average airspeed velocity of an unladen swallow')).to.equal(8);", + "expect(findLongestWord('What if we try a super-long word such as otorhinolaryngology')).to.equal(19);" ], "MDNlinks": [ "String.split()",