Browse Source

Fix duplicate variable initialization (#1702)

pull/1448/merge
Keghani Kouzoujian 9 years ago
committed by GitHub
parent
commit
57cb83dc23
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      javascript/i18n/phonenumbers/phonenumberutil_test.js

+ 1
- 2
javascript/i18n/phonenumbers/phonenumberutil_test.js View File

@ -3219,8 +3219,7 @@ function testFailedParseOnInvalidNumbers() {
}
try {
// Only the phone-context symbol is present, but no data.
/** @type {string} */
var invalidRfcPhoneContext = ';phone-context=';
invalidRfcPhoneContext = ';phone-context=';
phoneUtil.parse(invalidRfcPhoneContext, RegionCode.ZZ);
fail('Should have thrown an exception, no valid country calling code ' +
'present.');


Loading…
Cancel
Save