From 6094a9da12104ba04e74ff5a111187c900ff271b Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Fri, 29 Jan 2016 07:36:03 +0000 Subject: [PATCH] Fix the release year for Billy Joel - Piano Man This fixes the release year as mentioned in the issue. Hope the fans will forgive us! Tested locally. closes #6561 --- .../basic-javascript.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index 02df45c9971..c52138c5881 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -3534,7 +3534,7 @@ " {", " \"artist\": \"Billy Joel\",", " \"title\": \"Piano Man\",", - " \"release_year\": 1993,", + " \"release_year\": 1973,", " \"formats\": [ ", " \"CS\", ", " \"8T\", ", @@ -3549,7 +3549,7 @@ "(function(x){ if (Array.isArray(x)) { return JSON.stringify(x); } return \"myMusic is not an array\"})(myMusic);" ], "solutions": [ - "var myMusic = [\n {\n \"artist\": \"Billy Joel\",\n \"title\": \"Piano Man\",\n \"release_year\": 1993,\n \"formats\": [ \n \"CS\", \n \"8T\", \n \"LP\" ],\n \"gold\": true\n }, \n {\n \"artist\": \"ABBA\",\n \"title\": \"Ring Ring\",\n \"release_year\": 1973,\n \"formats\": [ \n \"CS\", \n \"8T\", \n \"LP\",\n \"CD\",\n ]\n }\n];" + "var myMusic = [\n {\n \"artist\": \"Billy Joel\",\n \"title\": \"Piano Man\",\n \"release_year\": 1973,\n \"formats\": [ \n \"CS\", \n \"8T\", \n \"LP\" ],\n \"gold\": true\n }, \n {\n \"artist\": \"ABBA\",\n \"title\": \"Ring Ring\",\n \"release_year\": 1973,\n \"formats\": [ \n \"CS\", \n \"8T\", \n \"LP\",\n \"CD\",\n ]\n }\n];" ], "tests": [ "assert(Array.isArray(myMusic), 'message: myMusic should be an array');",