Make surrogate regex even more lenient.

This commit is contained in:
Josh Haberman 2016-06-06 17:14:58 -07:00
parent 923d2c7ccf
commit 350453f2d5

View file

@ -260,12 +260,12 @@ class JsonFormatTest(JsonFormatBase):
# Error case: unpaired high surrogate.
self.CheckError(
'{"stringValue": "\\uD83D"}',
r'Invalid \\uXXXX escape|Unpaired (high )?surrogate')
r'Invalid \\uXXXX escape|Unpaired.*surrogate')
# Unpaired low surrogate.
self.CheckError(
'{"stringValue": "\\uDE01"}',
r'Invalid \\uXXXX escape|Unpaired (high )?surrogate')
r'Invalid \\uXXXX escape|Unpaired.*surrogate')
def testTimestampMessage(self):