diff options
| author | Tim Graham <timograham@gmail.com> | 2013-10-10 08:50:32 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-10 08:50:32 -0400 |
| commit | ff9e8eccf89fc1dce441736c39dcb6e218ca8940 (patch) | |
| tree | c1ae83040e336dfd6f6ab9e6790072478c7fbdca /tests/forms_tests | |
| parent | 9700194195735300f86803b0d023a37a89f4dff0 (diff) | |
Removed unnecessary semicolons.
Diffstat (limited to 'tests/forms_tests')
| -rw-r--r-- | tests/forms_tests/tests/test_forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/forms_tests/tests/test_forms.py b/tests/forms_tests/tests/test_forms.py index 640f48fe44..1182be3929 100644 --- a/tests/forms_tests/tests/test_forms.py +++ b/tests/forms_tests/tests/test_forms.py @@ -1899,7 +1899,7 @@ class FormsTestCase(TestCase): class JSONForm(forms.Form): json = CustomJSONField() - form = JSONForm(data={'json': '{}'}); + form = JSONForm(data={'json': '{}'}) form.full_clean() self.assertEqual(form.cleaned_data, {'json' : {}}) |
