Commit 0920165b authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

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
parent fc90c09e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -456,7 +456,7 @@ class FormsTestCase(TestCase):
        f = BeatleForm(auto_id=False)
        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:
        class SongForm(Form):
            name = CharField()