From 8bdcb436f9bf90b90ddd9b93defff644760ebf02 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Fri, 12 Dec 2014 17:06:52 +0100 Subject: [test_unicode_literals] Fix test --- test/helper.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/helper.py') diff --git a/test/helper.py b/test/helper.py index 9a7f0746e..8a820526a 100644 --- a/test/helper.py +++ b/test/helper.py @@ -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: -- cgit v1.2.3