Skip to content

Commit

Permalink
fix regex syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
fcurella committed Oct 15, 2024
1 parent 2f69eec commit 5104eaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/providers/test_phone_number.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,9 +344,9 @@ class TestKaGe:
r"\+995 \(\d{3}\) \d{3} \d{3}|" # Example: +995 (123) 456 789
r"\+995\d{9}|" # Example: +995123456789
r"0 \d{3} \d{3} \d{3}|" # Example: 0 123 456 789
r"+995 32 \d{3} \d{2} \d{2}|" # Example: +995 32 123 12 12
r"+995 34\d \d{3} \d{3}|" # Example: +995 34x 123 456
r"+995 \(34\d\) \d{3} \d{3}|" # Example: +995 (34x) 123 456
r"\+995 32 \d{3} \d{2} \d{2}|" # Example: +995 32 123 12 12
r"\+995 34\d \d{3} \d{3}|" # Example: +995 34x 123 456
r"\+995 \(34\d\) \d{3} \d{3}|" # Example: +995 (34x) 123 456
r"0 32 \d{3} \d{2} \d{2}|" # Example: 0 32 123 12 12
r"0 34\d \d{3} \d{3}" # Example: 0 34x 123 456
r")"
Expand Down

0 comments on commit 5104eaf

Please sign in to comment.