diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2011-12-07 22:33:20 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2011-12-07 22:33:20 +0000 |
| commit | 0920165bc26bd55131462befc234ce7993a744ba (patch) | |
| tree | 25bf8ca063d4f50f878b791389dd8f53f902c1a7 /tests | |
| parent | fc90c09efdfbc029d43e6d4c0952ed6b49f6f34d (diff) | |
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
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/regressiontests/forms/tests/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
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'<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() |
