aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_overwrites.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_overwrites.py')
-rw-r--r--test/test_overwrites.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/test/test_overwrites.py b/test/test_overwrites.py
index 9ad9bba..77fd100 100644
--- a/test/test_overwrites.py
+++ b/test/test_overwrites.py
@@ -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 @@ 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__':