aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-08-19 20:37:17 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-08-19 20:37:17 +0800
commite4659b45474acb563db0ab4284abdfc80837307e (patch)
treed0123c1cc00ea98d40f387c74cb3cd6fcc83cc38 /test
parent9e5751b9fe72f7425e4cb3f22a56b6a95b59e41d (diff)
downloadyoutube-dl-e4659b45474acb563db0ab4284abdfc80837307e.tar.xz
[utils] Correct octal/hexadecimal number detection in js_to_json
Diffstat (limited to 'test')
-rw-r--r--test/test_utils.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_utils.py b/test/test_utils.py
index cb578cd53..b83da93b4 100644
--- a/test/test_utils.py
+++ b/test/test_utils.py
@@ -712,6 +712,9 @@ class TestUtil(unittest.TestCase):
inp = '''{"foo":101}'''
self.assertEqual(js_to_json(inp), '''{"foo":101}''')
+ inp = '''{"duration": "00:01:07"}'''
+ self.assertEqual(js_to_json(inp), '''{"duration": "00:01:07"}''')
+
def test_js_to_json_edgecases(self):
on = js_to_json("{abc_def:'1\\'\\\\2\\\\\\'3\"4'}")
self.assertEqual(json.loads(on), {"abc_def": "1'\\2\\'3\"4"})