@@ -38,7 +38,7 @@ def test_send_sms_success(self, sms_resource, test_phone_number):
3838 "api_route" : "user-api/sms/quick-send" ,
3939 "apimode" : "quick-send" ,
4040 "quicksendidentifier" : "quick_123" ,
41- "hirvalidation " : True ,
41+ "hlrvalidation " : True ,
4242 }
4343 sms_resource .client .post .return_value = mock_response
4444
@@ -47,15 +47,15 @@ def test_send_sms_success(self, sms_resource, test_phone_number):
4747 recipient = test_phone_number ,
4848 message = "Hello, World!" ,
4949 sender = "+1987654321" ,
50- hirvalidation = True ,
50+ hlrvalidation = True ,
5151 )
5252
5353 # Verify the response
5454 assert result .id == "msg_123456789"
5555 assert result .recipient == test_phone_number
5656 assert result .message == "Hello, World!"
5757 assert result .status == "queued"
58- assert result .hirvalidation is True
58+ assert result .hlrvalidation is True
5959
6060 # Verify the API call
6161 sms_resource .client .post .assert_called_once_with (
@@ -64,7 +64,7 @@ def test_send_sms_success(self, sms_resource, test_phone_number):
6464 "sender" : "+1987654321" ,
6565 "recipient" : test_phone_number ,
6666 "message" : "Hello, World!" ,
67- "hirvalidation " : True ,
67+ "hlrvalidation " : True ,
6868 },
6969 sandbox = False ,
7070 )
@@ -319,7 +319,7 @@ def test_legacy_send_method(self, sms_resource, test_phone_number):
319319 "api_route" : "user-api/sms/quick-send" ,
320320 "apimode" : "quick-send" ,
321321 "quicksendidentifier" : "quick_123" ,
322- "hirvalidation " : True ,
322+ "hlrvalidation " : True ,
323323 }
324324 sms_resource .client .post .return_value = mock_response
325325
0 commit comments