Skip to content

Commit c4e6c35

Browse files
Version Bump v3.0.0: full v3 Web API support
1 parent 530ae1a commit c4e6c35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_sendgrid.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ def test_mail_batch__batch_id__get(self):
739739
response = self.sg.client.mail.batch._(batch_id).get(request_headers=headers)
740740
self.assertEqual(response.status_code, 200)
741741

742-
def test_mail_send_beta_post(self):
742+
def test_mail_send_post(self):
743743
data = {
744744
"asm": {
745745
"group_id": 1,
@@ -884,7 +884,7 @@ def test_mail_send_beta_post(self):
884884
}
885885
}
886886
headers = {'X-Mock': 202}
887-
response = self.sg.client.mail.send.beta.post(request_body=data, request_headers=headers)
887+
response = self.sg.client.mail.send.post(request_body=data, request_headers=headers)
888888
self.assertEqual(response.status_code, 202)
889889

890890
def test_mail_settings_get(self):

0 commit comments

Comments
 (0)