Commit 350453f2 authored by Josh Haberman's avatar Josh Haberman

Make surrogate regex even more lenient.

parent 923d2c7c
......@@ -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):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment