diff options
Diffstat (limited to 'tests/update_only_fields/tests.py')
| -rw-r--r-- | tests/update_only_fields/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/update_only_fields/tests.py b/tests/update_only_fields/tests.py index 69eb0bf9c1..cfca761e4c 100644 --- a/tests/update_only_fields/tests.py +++ b/tests/update_only_fields/tests.py @@ -128,7 +128,7 @@ class UpdateOnlyFieldsTests(TestCase): a1 = Account.objects.create(num=1) a2 = Account.objects.create(num=2) - e1.accounts = [a1,a2] + e1.accounts = [a1, a2] with self.assertRaises(ValueError): e1.save(update_fields=['accounts']) |
