From 5104eaf77f096ac87f8ba5d8cf51ca2059b4fb99 Mon Sep 17 00:00:00 2001 From: Flavio Curella Date: Tue, 15 Oct 2024 16:50:49 -0500 Subject: [PATCH] fix regex syntax --- tests/providers/test_phone_number.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/providers/test_phone_number.py b/tests/providers/test_phone_number.py index d276eecb2c..9de8045bd9 100644 --- a/tests/providers/test_phone_number.py +++ b/tests/providers/test_phone_number.py @@ -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")"