From 4f729e861f7fd0b743aabafd3e0f08c4a26bb52c Mon Sep 17 00:00:00 2001 From: Vimal Raghubir Date: Tue, 12 Jun 2018 22:22:14 -0400 Subject: [PATCH] fix: rename incorrect variable name (#17538) * fix: rename incorrect variable name * Fix: Bad variable naming --- .../02-javascript-algorithms-and-data-structures/es6.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/es6.json b/seed/challenges/02-javascript-algorithms-and-data-structures/es6.json index eeef6e5f6b..d8385c712e 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/es6.json +++ b/seed/challenges/02-javascript-algorithms-and-data-structures/es6.json @@ -1245,7 +1245,7 @@ }, { "text": "bar is exported.", - "testString": "getUserInput => assert(getUserInput('index').match(/export\\s+const\\s+boo\\s+=+\\s\"far\"/g), 'bar is exported.');" + "testString": "getUserInput => assert(getUserInput('index').match(/export\\s+const\\s+bar\\s+=+\\s\"foo\"/g), 'bar is exported.');" } ], "releasedOn": "Feb 17, 2017", @@ -1259,7 +1259,7 @@ "contents": [ "\"use strict\";", "const foo = \"bar\";", - "const boo = \"far\";" + "const bar= \"foo\";" ], "head": [ "window.exports = function(){};"