Add support for single-test tox runs
[youtube-dl] / test / test_download.py
index fdf59bb5c6af88bc0ee8dcbcbb4bc72b383b7968..68da4d98450e12a3bae790e43e62f5d8dc9b7909 100644 (file)
@@ -37,8 +37,8 @@ def _file_md5(fn):
     with open(fn, 'rb') as f:
         return hashlib.md5(f.read()).hexdigest()
 
-import helper  # Set up remaining global configuration
-from helper import get_testcases, try_rm
+import test.helper as helper  # Set up remaining global configuration
+from .helper import get_testcases, try_rm
 defs = get_testcases()
 
 with io.open(PARAMETERS_FILE, encoding='utf-8') as pf: