From a383950a4cbec7b885685111e25d139e4238f405 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Sun, 27 Dec 2015 03:17:15 +0530 Subject: [PATCH] Fixes #5456 : Typo in test for Bonfire : Where do I belong --- .../01-front-end-development-certification/basic-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/basic-bonfires.json b/seed/challenges/01-front-end-development-certification/basic-bonfires.json index 11560772d6a..4c9dbb7c10f 100644 --- a/seed/challenges/01-front-end-development-certification/basic-bonfires.json +++ b/seed/challenges/01-front-end-development-certification/basic-bonfires.json @@ -784,7 +784,7 @@ "tests": [ "assert(where([10, 20, 30, 40, 50], 35) === 3, 'message: where([10, 20, 30, 40, 50], 35) should return 3.');", "assert(where([10, 20, 30, 40, 50], 30) === 2, 'message: where([10, 20, 30, 40, 50], 30) should return 2.');", - "assert(where([40, 60], 50) === 1, 'message: where([40, 60,], 50) should return 1.');", + "assert(where([40, 60], 50) === 1, 'message: where([40, 60], 50) should return 1.');", "assert(where([3, 10, 5], 3) === 0, 'message: where([3, 10, 5], 3) should return 0.');", "assert(where([5, 3, 20, 3], 5) === 2, 'message: where([5, 3, 20, 3], 5) should return 2.');", "assert(where([2, 20, 10], 19) === 2, 'message: where([2, 20, 10], 19) should return 2.');",