Skip to content

Commit ba0ea4f

Browse files
committed
Add TOKEN and CHAT_ID for testing in favor of python-telegram-bot#221
1 parent a078878 commit ba0ea4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ class BaseTest(object):
3838
def __init__(self, *args, **kwargs):
3939
super(BaseTest, self).__init__(*args, **kwargs)
4040

41-
bot = telegram.Bot(os.environ.get('TOKEN'))
42-
chat_id = os.environ.get('CHAT_ID')
41+
bot = telegram.Bot(os.environ.get('TOKEN', '133505823:AAHZFMHno3mzVLErU5b5jJvaeG--qUyLyG0'))
42+
chat_id = os.environ.get('CHAT_ID', '12173560')
4343

4444
self._bot = bot
4545
self._chat_id = chat_id

0 commit comments

Comments
 (0)