@@ -86,41 +86,41 @@ def testGetDescriptionForNumberWithNoDataFile(self):
8686 # No data file containing mappings for US numbers is available in Chinese for the unittests. As
8787 # a result, the country name of United States in simplified Chinese is returned.
8888 self .assertEqual (u ("\u7F8E \u56FD " ),
89- description_for_number (US_NUMBER1 , _CHINESE , region = _CHINA ))
89+ description_for_number (US_NUMBER1 , _CHINESE , region = _CHINA ))
9090 self .assertEqual ("Bahamas" ,
91- description_for_number (BS_NUMBER1 , _ENGLISH , region = _USA ))
91+ description_for_number (BS_NUMBER1 , _ENGLISH , region = _USA ))
9292 self .assertEqual ("Australia" ,
93- description_for_number (AU_NUMBER , _ENGLISH , region = _USA ))
93+ description_for_number (AU_NUMBER , _ENGLISH , region = _USA ))
9494 self .assertEqual ("" ,
95- description_for_number (NUMBER_WITH_INVALID_COUNTRY_CODE , _ENGLISH , region = _USA ))
95+ description_for_number (NUMBER_WITH_INVALID_COUNTRY_CODE , _ENGLISH , region = _USA ))
9696 self .assertEqual ("" ,
97- description_for_number (INTERNATIONAL_TOLL_FREE , _ENGLISH , region = _USA ))
97+ description_for_number (INTERNATIONAL_TOLL_FREE , _ENGLISH , region = _USA ))
9898
9999 def testGetDescriptionForNumberWithMissingPrefix (self ):
100100 # Test that the name of the country is returned when the number passed in
101101 # is valid but not covered by the geocoding data file.
102102 self .assertEqual ("United States" ,
103- description_for_number (US_NUMBER4 , _ENGLISH , region = _USA ))
103+ description_for_number (US_NUMBER4 , _ENGLISH , region = _USA ))
104104
105105 def testGetDescriptionForNumber_en_US (self ):
106106 self .assertEqual ("CA" ,
107- description_for_number (US_NUMBER1 , _ENGLISH , region = _USA ))
107+ description_for_number (US_NUMBER1 , _ENGLISH , region = _USA ))
108108 self .assertEqual ("Mountain View, CA" ,
109- description_for_number (US_NUMBER2 , _ENGLISH , region = _USA ))
109+ description_for_number (US_NUMBER2 , _ENGLISH , region = _USA ))
110110 self .assertEqual ("New York, NY" ,
111- description_for_number (US_NUMBER3 , _ENGLISH , region = _USA ))
111+ description_for_number (US_NUMBER3 , _ENGLISH , region = _USA ))
112112
113113 def testGetDescriptionForKoreanNumber (self ):
114114 self .assertEqual ("Seoul" ,
115- description_for_number (KO_NUMBER1 , _ENGLISH ))
115+ description_for_number (KO_NUMBER1 , _ENGLISH ))
116116 self .assertEqual ("Incheon" ,
117- description_for_number (KO_NUMBER2 , _ENGLISH ))
117+ description_for_number (KO_NUMBER2 , _ENGLISH ))
118118 self .assertEqual ("Jeju" ,
119- description_for_number (KO_NUMBER3 , _ENGLISH ))
119+ description_for_number (KO_NUMBER3 , _ENGLISH ))
120120 self .assertEqual (u ("\uC11C \uC6B8 " ),
121- description_for_number (KO_NUMBER1 , _KOREAN ))
121+ description_for_number (KO_NUMBER1 , _KOREAN ))
122122 self .assertEqual (u ("\uC778 \uCC9C " ),
123- description_for_number (KO_NUMBER2 , _KOREAN ))
123+ description_for_number (KO_NUMBER2 , _KOREAN ))
124124
125125 def testGetDescriptionForArgentinianMobileNumber (self ):
126126 self .assertEqual ("La Plata" , description_for_number (AR_MOBILE_NUMBER , _ENGLISH ))
@@ -134,16 +134,16 @@ def testGetDescriptionForFallBack(self):
134134 # No fallback, as the location name for the given phone number is
135135 # available in the requested language.
136136 self .assertEqual ("Kalifornien" ,
137- description_for_number (US_NUMBER1 , _GERMAN ))
137+ description_for_number (US_NUMBER1 , _GERMAN ))
138138 # German falls back to English.
139139 self .assertEqual ("New York, NY" ,
140- description_for_number (US_NUMBER3 , _GERMAN ))
140+ description_for_number (US_NUMBER3 , _GERMAN ))
141141 # Italian falls back to English.
142142 self .assertEqual ("CA" ,
143- description_for_number (US_NUMBER1 , _ITALIAN ))
143+ description_for_number (US_NUMBER1 , _ITALIAN ))
144144 # Korean doesn't fall back to English.
145145 self .assertEqual (u ("\uB300 \uD55C \uBBFC \uAD6D " ),
146- description_for_number (KO_NUMBER3 , _KOREAN ))
146+ description_for_number (KO_NUMBER3 , _KOREAN ))
147147
148148 def testGetDescriptionForNumberWithUserRegion (self ):
149149 # User in Italy, American number. We should just show United States, in
0 commit comments