test: fix redeclared test-intl var
authorRich Trott <rtrott@gmail.com>
Sun, 31 Jan 2016 04:47:31 +0000 (20:47 -0800)
committerMyles Borins <mborins@us.ibm.com>
Wed, 2 Mar 2016 22:01:11 +0000 (14:01 -0800)
PR-URL: https://github.com/nodejs/node/pull/4988
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
test/parallel/test-intl.js

index 1219c33..551cc01 100644 (file)
@@ -20,14 +20,14 @@ function haveLocale(loc) {
 }
 
 if (!haveIntl) {
-  var erMsg =
+  const erMsg =
       '"Intl" object is NOT present but v8_enable_i18n_support is ' +
       enablei18n;
   assert.equal(enablei18n, false, erMsg);
   console.log('1..0 # Skipped: Intl tests because Intl object not present.');
 
 } else {
-  var erMsg =
+  const erMsg =
     '"Intl" object is present but v8_enable_i18n_support is ' +
     enablei18n +
     '. Is this test out of date?';