aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-12-16 21:56:16 +0700
committerSergey M․ <dstftw@gmail.com>2017-12-16 21:56:16 +0700
commitb555ae9bf146ce9e2bf81327746847f0bc4d63e9 (patch)
tree1bc4ec5bf6a8f0a8a8e11e1e3a19de0bad9da2ff /test
parentc402e7f3a03aceeb80dd032831ceafb6d0aaa935 (diff)
downloadyoutube-dl-b555ae9bf146ce9e2bf81327746847f0bc4d63e9.zip
youtube-dl-b555ae9bf146ce9e2bf81327746847f0bc4d63e9.tar.gz
youtube-dl-b555ae9bf146ce9e2bf81327746847f0bc4d63e9.tar.bz2
[utils] Add another date format pattern (#14999)
Diffstat (limited to 'test')
-rw-r--r--test/test_utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_utils.py b/test/test_utils.py
index cc13f79..0857c0f 100644
--- a/test/test_utils.py
+++ b/test/test_utils.py
@@ -343,6 +343,7 @@ class TestUtil(unittest.TestCase):
self.assertEqual(unified_timestamp('Feb 7, 2016 at 6:35 pm'), 1454870100)
self.assertEqual(unified_timestamp('2017-03-30T17:52:41Q'), 1490896361)
self.assertEqual(unified_timestamp('Sep 11, 2013 | 5:49 AM'), 1378878540)
+ self.assertEqual(unified_timestamp('December 15, 2017 at 7:49 am'), 1513324140)
def test_determine_ext(self):
self.assertEqual(determine_ext('http://example.com/foo/bar.mp4/?download'), 'mp4')