[test_unicode_literals] Fix test

This commit is contained in:
Philipp Hagemeister 2014-12-12 17:06:52 +01:00
parent ff815fe65a
commit 8bdcb436f9
2 changed files with 15 additions and 3 deletions

View file

@ -161,7 +161,9 @@ def assertRegexpMatches(self, text, regexp, msg=None):
else:
m = re.match(regexp, text)
if not m:
note = 'Regexp didn\'t match: %r not found in %r' % (regexp, text)
note = 'Regexp didn\'t match: %r not found' % (regexp)
if len(text) < 1000:
note += ' in %r' % text
if msg is None:
msg = note
else: