From ff9e8eccf89fc1dce441736c39dcb6e218ca8940 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 10 Oct 2013 08:50:32 -0400 Subject: Removed unnecessary semicolons. --- tests/forms_tests/tests/test_forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/forms_tests') 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' : {}}) -- cgit v1.3