]> jfr.im git - yt-dlp.git/blobdiff - test/test_iqiyi_sdk_interpreter.py
[cleanup] Point all shebang to `python3` (#372)
[yt-dlp.git] / test / test_iqiyi_sdk_interpreter.py
index 9d95cb60618ae4ee122b46884a2eae6233dffbec..e6ed9d628c9adcccc1a77840e1ecae98bd703431 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import unicode_literals
 
@@ -9,7 +9,7 @@
 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
 
 from test.helper import FakeYDL
-from youtube_dl.extractor import IqiyiIE
+from yt_dlp.extractor import IqiyiIE
 
 
 class IqiyiIEWithCredentials(IqiyiIE):
@@ -43,5 +43,6 @@ def test_iqiyi_sdk_interpreter(self):
         ie._login()
         self.assertTrue('unable to log in:' in logger.messages[0])
 
+
 if __name__ == '__main__':
     unittest.main()