diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-26 12:15:03 -0700 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-26 12:15:03 -0700 |
| commit | 9d740eb8b15de31f1c5520659df683d90342bb44 (patch) | |
| tree | 62b6ff49e5a60467828f9b04d46b6ebeac86c333 /tests/update_only_fields/tests.py | |
| parent | f2d8027c9aea93750fc4213d9e733c8575e89502 (diff) | |
Fix all violators of E231
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']) |
