1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-07-01 11:32:52 -05:00

[cleanup] Misc cleanup (#2173)

Authored by: fstirlitz, pukkandan
This commit is contained in:
pukkandan
2022-04-12 05:31:54 +05:30
parent f82711587c
commit e5a998f368
13 changed files with 46 additions and 33 deletions

View File

@ -3,14 +3,13 @@ import os
import subprocess
import sys
import unittest
from os.path import join
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
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
@ -44,7 +43,7 @@ class TestOverwrites(unittest.TestCase):
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__':