]> jfr.im git - yt-dlp.git/blobdiff - test/test_socks.py
[fragments] Pad fragments before decrypting (#1298)
[yt-dlp.git] / test / test_socks.py
index be52e2343e0fe28dd369f0cd4f35da0e4128f20b..cf1f613ab4b856f45ef3134020269dec7c05b035 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # coding: utf-8
 from __future__ import unicode_literals
 
 from test.helper import (
     FakeYDL,
     get_params,
+    is_download_test,
 )
-from youtube_dlc.compat import (
+from yt_dlp.compat import (
     compat_str,
     compat_urllib_request,
 )
 
 
+@is_download_test
 class TestMultipleSocks(unittest.TestCase):
     @staticmethod
     def _check_params(attrs):
@@ -76,6 +78,7 @@ def test_secondary_proxy_https(self):
             params['secondary_server_ip'])
 
 
+@is_download_test
 class TestSocks(unittest.TestCase):
     _SKIP_SOCKS_TEST = True