mirror of https://github.com/nodejs/node.git
test: fix redeclared test-intl var
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>pull/5045/head
parent
f48793eb15
commit
6504a0fec3
|
@ -20,14 +20,14 @@ function haveLocale(loc) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!haveIntl) {
|
if (!haveIntl) {
|
||||||
var erMsg =
|
const erMsg =
|
||||||
'"Intl" object is NOT present but v8_enable_i18n_support is ' +
|
'"Intl" object is NOT present but v8_enable_i18n_support is ' +
|
||||||
enablei18n;
|
enablei18n;
|
||||||
assert.equal(enablei18n, false, erMsg);
|
assert.equal(enablei18n, false, erMsg);
|
||||||
console.log('1..0 # Skipped: Intl tests because Intl object not present.');
|
console.log('1..0 # Skipped: Intl tests because Intl object not present.');
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
var erMsg =
|
const erMsg =
|
||||||
'"Intl" object is present but v8_enable_i18n_support is ' +
|
'"Intl" object is present but v8_enable_i18n_support is ' +
|
||||||
enablei18n +
|
enablei18n +
|
||||||
'. Is this test out of date?';
|
'. Is this test out of date?';
|
||||||
|
|
Loading…
Reference in New Issue