From: Philipp Hagemeister Date: Wed, 20 Nov 2013 06:37:07 +0000 (+0100) Subject: Adapt age restriction tests to new .info.json filenames X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=commitdiff_plain;h=f99e0f1ed62e6210a52f1a4bddb860a5b09623ee;p=youtube-dl.git Adapt age restriction tests to new .info.json filenames --- diff --git a/test/test_age_restriction.py b/test/test_age_restriction.py index d500c6edc..506572e9e 100644 --- a/test/test_age_restriction.py +++ b/test/test_age_restriction.py @@ -24,7 +24,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)