summaryrefslogtreecommitdiff
path: root/simplejson/tests/test_scanstring.py
diff options
context:
space:
mode:
Diffstat (limited to 'simplejson/tests/test_scanstring.py')
-rw-r--r--simplejson/tests/test_scanstring.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/simplejson/tests/test_scanstring.py b/simplejson/tests/test_scanstring.py
index d5de180..c6c53b8 100644
--- a/simplejson/tests/test_scanstring.py
+++ b/simplejson/tests/test_scanstring.py
@@ -132,6 +132,8 @@ class TestScanString(TestCase):
self.assertRaises(ValueError,
scanstring, '\\ud834\\x0123"', 0, None, True)
+ self.assertRaises(json.JSONDecodeError, scanstring, "\\u-123", 0, None, True)
+
def test_issue3623(self):
self.assertRaises(ValueError, json.decoder.scanstring, "xxx", 1,
"xxx")