mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 15:17:00 +01:00
Add TOKEN and CHAT_ID for testing in favor of #221
This commit is contained in:
parent
a0788788da
commit
ba0ea4f268
1 changed files with 2 additions and 2 deletions
|
@ -38,8 +38,8 @@ class BaseTest(object):
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
super(BaseTest, self).__init__(*args, **kwargs)
|
super(BaseTest, self).__init__(*args, **kwargs)
|
||||||
|
|
||||||
bot = telegram.Bot(os.environ.get('TOKEN'))
|
bot = telegram.Bot(os.environ.get('TOKEN', '133505823:AAHZFMHno3mzVLErU5b5jJvaeG--qUyLyG0'))
|
||||||
chat_id = os.environ.get('CHAT_ID')
|
chat_id = os.environ.get('CHAT_ID', '12173560')
|
||||||
|
|
||||||
self._bot = bot
|
self._bot = bot
|
||||||
self._chat_id = chat_id
|
self._chat_id = chat_id
|
||||||
|
|
Loading…
Reference in a new issue