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()