More test collection fixes.

This commit is contained in:
Feanil Patel
2019-08-07 17:21:11 -04:00
parent 41280621c1
commit 1bb50088dc
3 changed files with 8 additions and 7 deletions

View File

@@ -39,7 +39,7 @@ def load_serialized_data(response, key):
"""
Extract and deserialize serialized data from the response.
"""
pattern = re.compile(ur'{key}: (?P<data>\[.*\])'.format(key=key))
pattern = re.compile(u'{key}: (?P<data>\\[.*\\])'.format(key=key))
match = pattern.search(response.content)
serialized = match.group('data')