summaryrefslogtreecommitdiff
path: root/tests/forms_tests
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2015-12-02 23:55:50 +0000
committerTim Graham <timograham@gmail.com>2015-12-03 12:48:24 -0500
commit93452a70e8a62c7408eeded444f5088d4a26212d (patch)
treedfc64c81f0610e45650350e2d41918f5913ed098 /tests/forms_tests
parentb6dd0afead80a17d0ac8c3ba35c510afac32a0b8 (diff)
Fixed many spelling mistakes in code, comments, and docs.
Diffstat (limited to 'tests/forms_tests')
-rw-r--r--tests/forms_tests/tests/test_forms.py2
-rw-r--r--tests/forms_tests/tests/tests.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/forms_tests/tests/test_forms.py b/tests/forms_tests/tests/test_forms.py
index d3618b1a8c..917b5c99d2 100644
--- a/tests/forms_tests/tests/test_forms.py
+++ b/tests/forms_tests/tests/test_forms.py
@@ -749,7 +749,7 @@ class FormsTestCase(SimpleTestCase):
'<input type="hidden" name="when_1" value="01:01" id="id_when_1" />'
)
- def test_mulitple_choice_checkbox(self):
+ def test_multiple_choice_checkbox(self):
# MultipleChoiceField can also be used with the CheckboxSelectMultiple widget.
class SongForm(Form):
name = CharField()
diff --git a/tests/forms_tests/tests/tests.py b/tests/forms_tests/tests/tests.py
index 74005ce6fe..992dbc851e 100644
--- a/tests/forms_tests/tests/tests.py
+++ b/tests/forms_tests/tests/tests.py
@@ -184,7 +184,7 @@ class FormsModelTestCase(TestCase):
m.delete()
def test_boundary_conditions(self):
- # Boundary conditions on a PostitiveIntegerField #########################
+ # Boundary conditions on a PositiveIntegerField #########################
class BoundaryForm(ModelForm):
class Meta:
model = BoundaryModel