We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 530ae1a commit c4e6c35Copy full SHA for c4e6c35
test/test_sendgrid.py
@@ -739,7 +739,7 @@ def test_mail_batch__batch_id__get(self):
739
response = self.sg.client.mail.batch._(batch_id).get(request_headers=headers)
740
self.assertEqual(response.status_code, 200)
741
742
- def test_mail_send_beta_post(self):
+ def test_mail_send_post(self):
743
data = {
744
"asm": {
745
"group_id": 1,
@@ -884,7 +884,7 @@ def test_mail_send_beta_post(self):
884
}
885
886
headers = {'X-Mock': 202}
887
- response = self.sg.client.mail.send.beta.post(request_body=data, request_headers=headers)
+ response = self.sg.client.mail.send.post(request_body=data, request_headers=headers)
888
self.assertEqual(response.status_code, 202)
889
890
def test_mail_settings_get(self):
0 commit comments