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 cbe0570 commit 8e80a8dCopy full SHA for 8e80a8d
tests/test_contact.py
@@ -67,6 +67,8 @@ def test_contact_to_dict(self):
67
self.assertEqual(contact['last_name'], self.last_name)
68
self.assertEqual(contact['user_id'], self.user_id)
69
70
+
71
+''' Commented out, because it would cause "Too Many Requests (429)" errors.
72
@flaky(3, 1)
73
def test_reply_contact(self):
74
"""Test for Message.reply_contact"""
@@ -75,7 +77,7 @@ def test_reply_contact(self):
75
77
76
78
self.assertEqual(message.contact.phone_number, self.phone_number)
79
self.assertEqual(message.contact.first_name, self.first_name)
-
80
+'''
81
82
if __name__ == '__main__':
83
unittest.main()
0 commit comments