Skip to content

Commit 5c334a8

Browse files
committed
Fix unicode test for Python 3.2
1 parent 799872a commit 5c334a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bootstrap3/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class TestForm(forms.Form):
5959
label='Sender © unicode',
6060
help_text='E.g., "[email protected]"')
6161
secret = forms.CharField(initial=42, widget=forms.HiddenInput)
62-
weird = forms.CharField(help_text=u'wéird')
62+
weird = forms.CharField(help_text=u"strings are now utf-8 \u03BCnico\u0394é!")
6363
cc_myself = forms.BooleanField(
6464
required=False,
6565
help_text='cc stands for "carbon copy." You will get a copy in your mailbox.'

0 commit comments

Comments
 (0)