We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 248ebdb commit a1cca1bCopy full SHA for a1cca1b
1 file changed
tests/test_api.py
@@ -104,12 +104,12 @@ def test_send_sms(self):
104
'body': {"identifiers": {"id":"customer_1"}, "transactional_message_id": 100}
105
}))
106
107
- push = SendSMSRequest(
+ sms = SendSMSRequest(
108
identifiers={"id":"customer_1"},
109
transactional_message_id=100,
110
)
111
112
- self.client.send_sms(push)
+ self.client.send_sms(sms)
113
114
if __name__ == '__main__':
115
unittest.main()
0 commit comments