From b0aca8438c512586389f4bc29bf39c18dfd5b1ad Mon Sep 17 00:00:00 2001 From: Mort Yao Date: Wed, 11 Nov 2020 23:54:42 +0100 Subject: [PATCH] [test] remove case for tiktok --- tests/test.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test.py b/tests/test.py index 00bd4cbb..26a0aa18 100644 --- a/tests/test.py +++ b/tests/test.py @@ -40,7 +40,7 @@ class YouGetTests(unittest.TestCase): def test_acfun(self): acfun.download('https://www.acfun.cn/v/ac11701912', info_only=True) - def test_bilibil(self): + def test_bilibili(self): bilibili.download( "https://www.bilibili.com/watchlater/#/BV1PE411q7mZ/p6", info_only=True ) @@ -58,10 +58,10 @@ class YouGetTests(unittest.TestCase): # 'https://soundcloud.com/anthony-flieger/sets/cytus', info_only=True #) - def tests_tiktok(self): - tiktok.download('https://www.tiktok.com/@nmb48_official/video/6850796940293164290', info_only=True) - tiktok.download('https://t.tiktok.com/i18n/share/video/6850796940293164290/', info_only=True) - tiktok.download('https://vt.tiktok.com/UGJR4R/', info_only=True) + #def tests_tiktok(self): + # tiktok.download('https://www.tiktok.com/@nmb48_official/video/6850796940293164290', info_only=True) + # tiktok.download('https://t.tiktok.com/i18n/share/video/6850796940293164290/', info_only=True) + # tiktok.download('https://vt.tiktok.com/UGJR4R/', info_only=True) if __name__ == '__main__':