]> jfr.im git - yt-dlp.git/blobdiff - test/test_overwrites.py
[ie/TubiTv] Fix extractor (#9975)
[yt-dlp.git] / test / test_overwrites.py
index f5d10a409b4ee5a5fca7a13e8c080461ff0aecc0..6954c07f90f9506e1992e17374c51b1d497f3a98 100644 (file)
@@ -1,18 +1,19 @@
 #!/usr/bin/env python3
-from __future__ import unicode_literals
 
+# Allow direct execution
 import os
-from os.path import join
-import subprocess
 import sys
 import unittest
+
 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
 
-from test.helper import is_download_test, try_rm
 
+import subprocess
+
+from test.helper import is_download_test, try_rm
 
 root_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
-download_file = join(root_dir, 'test.webm')
+download_file = os.path.join(root_dir, 'test.webm')
 
 
 @is_download_test
@@ -46,7 +47,7 @@ def test_yes_overwrites(self):
         self.assertTrue(os.path.getsize(download_file) > 1)
 
     def tearDown(self):
-        try_rm(join(root_dir, 'test.webm'))
+        try_rm(os.path.join(root_dir, 'test.webm'))
 
 
 if __name__ == '__main__':