File tree Expand file tree Collapse file tree 3 files changed +5
-13
lines changed
Expand file tree Collapse file tree 3 files changed +5
-13
lines changed Original file line number Diff line number Diff line change 2424
2525from flaky import flaky
2626
27- sys .path .append ('.' )
28-
2927import telegram
3028from tests .base import BaseTest , timeout
3129from tests .bots import get_bot
Original file line number Diff line number Diff line change 1717# You should have received a copy of the GNU General Public License
1818# along with this program. If not, see [http://www.gnu.org/licenses/].
1919"""This module contains an object that represents Tests for Telegram VideoNote"""
20- import numbers
20+ import os
2121import sys
2222import unittest
23- import os
2423
2524from flaky import flaky
2625
27- from tests .bots import get_bot
28-
29- sys .path .append ('.' )
30-
3126import telegram
3227from tests .base import BaseTest , timeout
28+ from tests .bots import get_bot
3329
3430
3531class VideoNoteTest (BaseTest , unittest .TestCase ):
@@ -175,5 +171,6 @@ def test_equality(self):
175171 self .assertNotEqual (a , e )
176172 self .assertNotEqual (hash (a ), hash (e ))
177173
174+
178175if __name__ == '__main__' :
179176 unittest .main ()
Original file line number Diff line number Diff line change 1818# along with this program. If not, see [http://www.gnu.org/licenses/].
1919"""This module contains an object that represents Tests for Telegram Voice"""
2020
21+ import os
2122import sys
2223import unittest
23- import os
2424
2525from flaky import flaky
2626
27- from tests .bots import get_bot
28-
29- sys .path .append ('.' )
30-
3127import telegram
3228from tests .base import BaseTest , timeout
29+ from tests .bots import get_bot
3330
3431
3532class VoiceTest (BaseTest , unittest .TestCase ):
You can’t perform that action at this time.
0 commit comments