From 4cf393bb4baf7fd9b2e8643012dd17ab61184310 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Sun, 19 Jan 2014 06:16:40 +0100 Subject: [PATCH] [dropbox] Correct test case (#2171) --- youtube_dl/extractor/dropbox.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/dropbox.py b/youtube_dl/extractor/dropbox.py index 44f827e89..d74981eea 100644 --- a/youtube_dl/extractor/dropbox.py +++ b/youtube_dl/extractor/dropbox.py @@ -1,6 +1,7 @@ # coding: utf-8 from __future__ import unicode_literals +import os.path import re from .common import InfoExtractor @@ -11,7 +12,7 @@ class DropboxIE(InfoExtractor): _TEST = { 'url': 'https://www.dropbox.com/s/mcnzehi9wo55th4/20131219_085616.mp4', 'file': 'mcnzehi9wo55th4.mp4', - 'md5': '2cec58eb277054eca0dbaaf3bdc72564', + 'md5': 'f6d65b1b326e82fd7ab7720bea3dacae', 'info_dict': { 'title': '20131219_085616' } @@ -20,7 +21,7 @@ class DropboxIE(InfoExtractor): def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) video_id = mobj.group('id') - title = mobj.group('title') + title = os.path.splitext(mobj.group('title'))[0] video_url = url + '?dl=1' return { -- 2.30.2