fix: rename incorrect variable name (#17538)

* fix: rename incorrect variable name

* Fix: Bad variable naming
This commit is contained in:
Vimal Raghubir
2018-06-12 22:22:14 -04:00
committed by mrugesh mohapatra
parent ed5e02d7ae
commit 9e84a54d72

View File

@ -1245,7 +1245,7 @@
}, },
{ {
"text": "<code>bar</code> is exported.", "text": "<code>bar</code> is exported.",
"testString": "getUserInput => assert(getUserInput('index').match(/export\\s+const\\s+boo\\s+=+\\s\"far\"/g), '<code>bar</code> is exported.');" "testString": "getUserInput => assert(getUserInput('index').match(/export\\s+const\\s+bar\\s+=+\\s\"foo\"/g), '<code>bar</code> is exported.');"
} }
], ],
"releasedOn": "Feb 17, 2017", "releasedOn": "Feb 17, 2017",
@ -1259,7 +1259,7 @@
"contents": [ "contents": [
"\"use strict\";", "\"use strict\";",
"const foo = \"bar\";", "const foo = \"bar\";",
"const boo = \"far\";" "const bar= \"foo\";"
], ],
"head": [ "head": [
"window.exports = function(){};" "window.exports = function(){};"