summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2011-12-07 22:33:20 +0000
committerAdrian Holovaty <adrian@holovaty.com>2011-12-07 22:33:20 +0000
commit0920165bc26bd55131462befc234ce7993a744ba (patch)
tree25bf8ca063d4f50f878b791389dd8f53f902c1a7 /tests
parentfc90c09efdfbc029d43e6d4c0952ed6b49f6f34d (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.py2
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()