From 47212f7bcbd59af40f91796562a6b72ba0439ac4 Mon Sep 17 00:00:00 2001 From: Yen Chi Hsuan Date: Thu, 16 Jun 2016 11:00:54 +0800 Subject: [utils] Don't transform numbers not starting with a zero Fix test_Viidea and maybe others --- test/test_utils.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test') diff --git a/test/test_utils.py b/test/test_utils.py index 0e25de6b7..b7ef51f8d 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -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"}) -- cgit v1.2.3