Skip to content

Commit 8e80a8d

Browse files
committed
comment out test_reply_contact
1 parent cbe0570 commit 8e80a8d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_contact.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ def test_contact_to_dict(self):
6767
self.assertEqual(contact['last_name'], self.last_name)
6868
self.assertEqual(contact['user_id'], self.user_id)
6969

70+
71+
''' Commented out, because it would cause "Too Many Requests (429)" errors.
7072
@flaky(3, 1)
7173
def test_reply_contact(self):
7274
"""Test for Message.reply_contact"""
@@ -75,7 +77,7 @@ def test_reply_contact(self):
7577
7678
self.assertEqual(message.contact.phone_number, self.phone_number)
7779
self.assertEqual(message.contact.first_name, self.first_name)
78-
80+
'''
7981

8082
if __name__ == '__main__':
8183
unittest.main()

0 commit comments

Comments
 (0)