diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-12 05:31:54 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-12 05:32:52 +0530 |
commit | e5a998f3684e7c56f9cf1c07c4e176e891d96509 (patch) | |
tree | 2db9c362fc168889debe84903a5e4dbabdb742cf /test/test_overwrites.py | |
parent | f82711587cee043cb2496fe180b5cc0e07c06eda (diff) | |
download | hypervideo-pre-e5a998f3684e7c56f9cf1c07c4e176e891d96509.tar.lz hypervideo-pre-e5a998f3684e7c56f9cf1c07c4e176e891d96509.tar.xz hypervideo-pre-e5a998f3684e7c56f9cf1c07c4e176e891d96509.zip |
[cleanup] Misc cleanup (#2173)
Authored by: fstirlitz, pukkandan
Diffstat (limited to 'test/test_overwrites.py')
-rw-r--r-- | test/test_overwrites.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/test_overwrites.py b/test/test_overwrites.py index 39741b65c..a6d5bae40 100644 --- a/test/test_overwrites.py +++ b/test/test_overwrites.py @@ -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__': |