summaryrefslogtreecommitdiff
path: root/tests/update_only_fields
diff options
context:
space:
mode:
authorVeres Lajos <vlajos@gmail.com>2014-11-03 22:48:03 +0000
committerTim Graham <timograham@gmail.com>2014-11-03 20:59:30 -0500
commita71a2ea756673cd3c7a2c5125fa7e7f334b05475 (patch)
tree61cff2d319c13011d004d0f008fe1957fd773651 /tests/update_only_fields
parent7b420367524ad9f29b8bf0284f4b40bd6cfc8b93 (diff)
downloaddjango-a71a2ea756673cd3c7a2c5125fa7e7f334b05475.tar.gz
Fixed typos using https://github.com/vlajos/misspell_fixer
Diffstat (limited to 'tests/update_only_fields')
-rw-r--r--tests/update_only_fields/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/update_only_fields/tests.py b/tests/update_only_fields/tests.py
index 324fc183d4..095858fa49 100644
--- a/tests/update_only_fields/tests.py
+++ b/tests/update_only_fields/tests.py
@@ -73,7 +73,7 @@ class UpdateOnlyFieldsTests(TestCase):
with self.assertNumQueries(1):
s1.save()
# Test that the deferred class does not remember that gender was
- # set, instead the instace should remember this.
+ # set, instead the instance should remember this.
s1 = Person.objects.only('name').get(pk=s.pk)
with self.assertNumQueries(1):
s1.save()