Removed unnecessary semicolons.

This commit is contained in:
Tim Graham 2013-10-10 08:50:32 -04:00
parent 9700194195
commit ff9e8eccf8
3 changed files with 4 additions and 4 deletions

View file

@ -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' : {}})