Browse Source

JAVA: Update invalid US number in geocoder test, so that it is invalid for both the production and test metadata.

pull/567/head
Shaopeng Jia 15 years ago
committed by Mihaela Rosca
parent
commit
c167f1c88f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      java/test/com/google/i18n/phonenumbers/geocoding/PhoneNumberOfflineGeocoderTest.java

+ 1
- 1
java/test/com/google/i18n/phonenumbers/geocoding/PhoneNumberOfflineGeocoderTest.java View File

@ -48,7 +48,7 @@ public class PhoneNumberOfflineGeocoderTest extends TestCase {
private static final PhoneNumber US_NUMBER3 =
new PhoneNumber().setCountryCode(1).setNationalNumber(2128120000L);
private static final PhoneNumber US_INVALID_NUMBER =
new PhoneNumber().setCountryCode(1).setNationalNumber(1234567890L);
new PhoneNumber().setCountryCode(1).setNationalNumber(123456789L);
private static final PhoneNumber BS_NUMBER1 =
new PhoneNumber().setCountryCode(1).setNationalNumber(2423651234L);
private static final PhoneNumber AU_NUMBER =


Loading…
Cancel
Save