From 0920165bc26bd55131462befc234ce7993a744ba Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 7 Dec 2011 22:33:20 +0000 Subject: [PATCH] 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 --- tests/regressiontests/forms/tests/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regressiontests/forms/tests/forms.py b/tests/regressiontests/forms/tests/forms.py index 3cedb04b94..e456c38a38 100644 --- a/tests/regressiontests/forms/tests/forms.py +++ b/tests/regressiontests/forms/tests/forms.py @@ -456,7 +456,7 @@ class FormsTestCase(TestCase): f = BeatleForm(auto_id=False) self.assertEqual('\n'.join(list(f['name'])), u'') - 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: class SongForm(Form): name = CharField()