X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=test%2Ftest_age_restriction.py;h=71e80b037a5cc99fd0cb1a6711d20cfb59e01b34;hb=4e0fb1280a8c1b392e5ce71aff796c94a12976a0;hp=d500c6edceb6018510b9226d925d9f407b72fcbd;hpb=38db46794f3ccfef09094db9b411e55acd4c1a3d;p=youtube-dl.git diff --git a/test/test_age_restriction.py b/test/test_age_restriction.py index d500c6edc..71e80b037 100644 --- a/test/test_age_restriction.py +++ b/test/test_age_restriction.py @@ -6,15 +6,14 @@ import sys import unittest sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) -from test.helper import global_setup, try_rm -global_setup() +from test.helper import try_rm from youtube_dl import YoutubeDL def _download_restricted(url, filename, age): - """ Returns true iff the file has been downloaded """ + """ Returns true if the file has been downloaded """ params = { 'age_limit': age, @@ -24,7 +23,7 @@ def _download_restricted(url, filename, age): } ydl = YoutubeDL(params) ydl.add_default_info_extractors() - json_filename = filename + '.info.json' + json_filename = os.path.splitext(filename)[0] + '.info.json' try_rm(json_filename) ydl.download([url]) res = os.path.exists(json_filename)