Include two more cases for non-ascii encoded bytes

This commit is contained in:
Bruno Oliveira
2019-07-04 09:34:55 -03:00
parent a886015bfd
commit 34b4e21606
2 changed files with 14 additions and 2 deletions

View File

@@ -577,7 +577,7 @@ class ExceptionInfo(object):
)
if not re.search(regexp, value):
raise AssertionError(
u"Pattern '{}' not found in '{}'".format(regexp, value)
u"Pattern {!r} not found in {!r}".format(regexp, value)
)
return True