[utils] Don't transform numbers not starting with a zero

Fix test_Viidea and maybe others
This commit is contained in:
Yen Chi Hsuan 2016-06-16 11:00:54 +08:00
parent 4c93ee8d14
commit 47212f7bcb
No known key found for this signature in database
GPG key ID: 3FDDD575826C5C30
2 changed files with 4 additions and 1 deletions

View file

@ -640,6 +640,9 @@ class TestUtil(unittest.TestCase):
"1":{"src":"skipped", "type": "application/vnd.apple.mpegURL"}
}''')
inp = '''{"foo":101}'''
self.assertEqual(js_to_json(inp), '''{"foo":101}''')
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"})