Fixed typo in a test name in form tests

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17174 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2011-12-07 22:33:20 +00:00
parent fc90c09efd
commit 0920165bc2
1 changed files with 1 additions and 1 deletions

View File

@ -456,7 +456,7 @@ class FormsTestCase(TestCase):
f = BeatleForm(auto_id=False) f = BeatleForm(auto_id=False)
self.assertEqual('\n'.join(list(f['name'])), u'<input type="text" name="name" />') self.assertEqual('\n'.join(list(f['name'])), u'<input type="text" name="name" />')
def test_forms_wit_hmultiple_choice(self): def test_forms_with_multiple_choice(self):
# MultipleChoiceField is a special case, as its data is required to be a list: # MultipleChoiceField is a special case, as its data is required to be a list:
class SongForm(Form): class SongForm(Form):
name = CharField() name = CharField()