diff options
| author | Josh Soref <jsoref@users.noreply.github.com> | 2015-12-02 23:55:50 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-12-03 12:49:03 -0500 |
| commit | 8897f4b0df30f385d0a95156f8a18b4b25cea37e (patch) | |
| tree | 06b90550ea4c2481adbe89a918817d5b1726e65e /tests/forms_tests | |
| parent | 519cfbb4e8f388664347fcc708e44148148ed6f8 (diff) | |
[1.9.x] Fixed many spelling mistakes in code, comments, and docs.
Backport of 93452a70e8a62c7408eeded444f5088d4a26212d from master
Diffstat (limited to 'tests/forms_tests')
| -rw-r--r-- | tests/forms_tests/tests/test_forms.py | 2 | ||||
| -rw-r--r-- | tests/forms_tests/tests/tests.py | 2 |
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 6a0d8aaebe..3d35da550f 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 |
