mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Removed unnecessary semicolons.
This commit is contained in:
parent
9700194195
commit
ff9e8eccf8
3 changed files with 4 additions and 4 deletions
|
@ -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' : {}})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue