about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-11-20 07:37:07 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-11-20 07:37:07 +0100
commitf99e0f1ed62e6210a52f1a4bddb860a5b09623ee (patch)
treecd0c159a6eeecae5af5900f9368d50236b936740
parentd323bcb1522d3163918eef2c458e33537c773287 (diff)
downloadyoutube-dl-f99e0f1ed62e6210a52f1a4bddb860a5b09623ee.tar.gz
youtube-dl-f99e0f1ed62e6210a52f1a4bddb860a5b09623ee.tar.xz
youtube-dl-f99e0f1ed62e6210a52f1a4bddb860a5b09623ee.zip
Adapt age restriction tests to new .info.json filenames
-rw-r--r--test/test_age_restriction.py2
1 files changed, 1 insertions, 1 deletions
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)