diff --git a/tests/regressiontests/forms/error_messages.py b/tests/regressiontests/forms/error_messages.py index b7224dbde0..b102448cb9 100644 --- a/tests/regressiontests/forms/error_messages.py +++ b/tests/regressiontests/forms/error_messages.py @@ -362,6 +362,7 @@ ValidationError: [u'4 IS INVALID CHOICE'] # Subclassing ErrorList ####################################################### >>> from django.utils.safestring import mark_safe +>>> from django.utils.encoding import force_unicode >>> >>> class TestForm(Form): ... first_name = CharField() @@ -377,7 +378,7 @@ ValidationError: [u'4 IS INVALID CHOICE'] ... def as_divs(self): ... if not self: return u'' ... return mark_safe(u'
%s
' -... % ''.join([u'

%s

' % e for e in self])) +... % ''.join([u'

%s

' % force_unicode(e) for e in self])) ... This form should print errors the default way.