Unit test fix, that missed testing as part of commit #5c309c5
diff --git a/javascript/i18n/phonenumbers/phonenumberutil_test.js b/javascript/i18n/phonenumbers/phonenumberutil_test.js
index d14bf58..45d05b4 100644
--- a/javascript/i18n/phonenumbers/phonenumberutil_test.js
+++ b/javascript/i18n/phonenumbers/phonenumberutil_test.js
@@ -455,8 +455,7 @@
function testGetSupportedGlobalNetworkCallingCodes() {
assertTrue(phoneUtil.getSupportedGlobalNetworkCallingCodes().length > 0);
- assertFalse(phoneUtil.getSupportedGlobalNetworkCallingCodes().includes(
- RegionCode.US));
+ assertFalse(phoneUtil.getSupportedGlobalNetworkCallingCodes().includes(1));
assertTrue(phoneUtil.getSupportedGlobalNetworkCallingCodes().includes(800));
phoneUtil.getSupportedGlobalNetworkCallingCodes().forEach(function(
countryCallingCode) {