From 5c83dd0fdef17eca65eed3dc734964fc5a00bdf3 Mon Sep 17 00:00:00 2001 From: Zuzana Date: Mon, 4 Sep 2017 11:03:40 +0100 Subject: [PATCH] fix(challenge): Close element with (#15842) Closes #15185 --- .../basic-data-structures.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/math-challenges/02-javascript-algorithms-and-data-structures/basic-data-structures.json b/seed/math-challenges/02-javascript-algorithms-and-data-structures/basic-data-structures.json index c81b5785fd..57e6ee7caa 100644 --- a/seed/math-challenges/02-javascript-algorithms-and-data-structures/basic-data-structures.json +++ b/seed/math-challenges/02-javascript-algorithms-and-data-structures/basic-data-structures.json @@ -251,7 +251,7 @@ "console.log(forecast(['cold', 'rainy', 'warm', 'sunny', 'cool', 'thunderstorms']));" ], "tests": [ - "assert.deepEqual(forecast(['cold', 'rainy', 'warm', 'sunny', 'cool', 'thunderstorms']), ['warm', 'sunny'], 'message: forecast should return [\"warm\", \"sunny\"]');", + "assert.deepEqual(forecast(['cold', 'rainy', 'warm', 'sunny', 'cool', 'thunderstorms']), ['warm', 'sunny'], 'message: forecast should return [\"warm\", \"sunny\"]');", "assert(/\\.slice\\(/.test(code), 'message: The forecast function should utilize the slice() method');" ], "type": "waypoint",