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 c81b5785fdb..57e6ee7caa1 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",