diff options
Diffstat (limited to 'tests/update_only_fields')
| -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 172cd64f5d..c2b809b328 100644 --- a/tests/update_only_fields/tests.py +++ b/tests/update_only_fields/tests.py @@ -72,7 +72,7 @@ class UpdateOnlyFieldsTests(TestCase): s1.gender = 'M' with self.assertNumQueries(1): s1.save() - # Test that the deferred class does not remember that gender was + # The deferred class does not remember that gender was # set, instead the instance should remember this. s1 = Person.objects.only('name').get(pk=s.pk) with self.assertNumQueries(1): |
