summaryrefslogtreecommitdiff
path: root/tests/forms_tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-10-10 08:50:32 -0400
committerTim Graham <timograham@gmail.com>2013-10-10 08:50:32 -0400
commitff9e8eccf89fc1dce441736c39dcb6e218ca8940 (patch)
treec1ae83040e336dfd6f6ab9e6790072478c7fbdca /tests/forms_tests
parent9700194195735300f86803b0d023a37a89f4dff0 (diff)
Removed unnecessary semicolons.
Diffstat (limited to 'tests/forms_tests')
-rw-r--r--tests/forms_tests/tests/test_forms.py2
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' : {}})