Change to country codes for Payments Beta.

This commit is contained in:
Alex Hart
2021-11-11 18:12:14 -04:00
parent e8c769bd1d
commit cc64a922d7
2 changed files with 6 additions and 1 deletions

View File

@@ -33,6 +33,11 @@ public final class GeographicalRestrictionsTest {
assertTrue(GeographicalRestrictions.e164Allowed("+441617151234"));
}
@Test
public void crimea_not_allowed() {
assertFalse(GeographicalRestrictions.e164Allowed("+79782222222"));
}
@Test
public void blacklist_not_allowed() {
for (int code : BuildConfig.MOBILE_COIN_BLACKLIST) {