[BAEL-3944] Identation

This commit is contained in:
sergio41 2020-04-30 19:09:11 +02:00
parent 23bc2db643
commit 5a73101deb
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public class PhoneNumbersRegexUnitTest {
+ "|^(\\+\\d{1,3}( )?)?(\\d{3}[ ]?)(\\d{2}[ ]?){2}\\d{2}$";
String[] validPhoneNumbers
= {"2055550125","202 555 0125", "(202) 555-0125", "+111 (202) 555-0125", "636 856 789", "+111 636 856 789", "636 85 67 89", "+111 636 85 67 89"};
= {"2055550125","202 555 0125", "(202) 555-0125", "+111 (202) 555-0125", "636 856 789", "+111 636 856 789", "636 85 67 89", "+111 636 85 67 89"};
Pattern pattern = Pattern.compile(patterns);
for(String phoneNumber : validPhoneNumbers) {