diff --git a/sdk/communication/azure-communication-sms/tests/test_sms_client_e2e.py b/sdk/communication/azure-communication-sms/tests/test_sms_client_e2e.py index 7256c6c56764..922d2e3e9aa9 100644 --- a/sdk/communication/azure-communication-sms/tests/test_sms_client_e2e.py +++ b/sdk/communication/azure-communication-sms/tests/test_sms_client_e2e.py @@ -15,9 +15,6 @@ ResponseReplacerProcessor ) -SKIP_PHONE_NUMBER_TESTS = False -PHONE_NUMBER_TEST_SKIP_REASON= "Phone Number infra for live tests not ready yet" - class SMSClientTest(CommunicationTestCase): def __init__(self, method_name): super(SMSClientTest, self).__init__(method_name) @@ -37,7 +34,6 @@ def setUp(self): self.sms_client = SmsClient.from_connection_string(self.connection_str) @pytest.mark.live_test_only - @pytest.mark.skipif(SKIP_PHONE_NUMBER_TESTS, reason=PHONE_NUMBER_TEST_SKIP_REASON) def test_send_sms(self): # calling send() with sms values diff --git a/sdk/communication/azure-communication-sms/tests/test_sms_client_e2e_async.py b/sdk/communication/azure-communication-sms/tests/test_sms_client_e2e_async.py index ed3528594452..47f94bcada9b 100644 --- a/sdk/communication/azure-communication-sms/tests/test_sms_client_e2e_async.py +++ b/sdk/communication/azure-communication-sms/tests/test_sms_client_e2e_async.py @@ -15,9 +15,6 @@ BodyReplacerProcessor, ResponseReplacerProcessor ) -SKIP_PHONE_NUMBER_TESTS = True -PHONE_NUMBER_TEST_SKIP_REASON= "Phone Number infra for live tests not ready yet" - class SMSClientTestAsync(AsyncCommunicationTestCase): def __init__(self, method_name): super(SMSClientTestAsync, self).__init__(method_name) @@ -36,7 +33,6 @@ def setUp(self): @AsyncCommunicationTestCase.await_prepared_test @pytest.mark.live_test_only - @pytest.mark.skipif(SKIP_PHONE_NUMBER_TESTS, reason=PHONE_NUMBER_TEST_SKIP_REASON) async def test_send_sms_async(self): sms_client = SmsClient.from_connection_string(self.connection_str)