[1.8.x] Fixed typos in code comments.

Backport of 039465a6a7 from master
This commit is contained in:
Adam Taylor 2015-01-20 07:54:12 -07:00 committed by Tim Graham
parent 90d9bf5ba4
commit 45aaced91e
26 changed files with 28 additions and 28 deletions

View file

@ -324,7 +324,7 @@ class DeletionTests(TestCase):
# One query for Avatar.objects.all() and then one related fast delete for
# each batch.
fetches_to_mem = 1 + batches
# The Avatar objecs are going to be deleted in batches of GET_ITERATOR_CHUNK_SIZE
# The Avatar objects are going to be deleted in batches of GET_ITERATOR_CHUNK_SIZE
queries = fetches_to_mem + TEST_SIZE // GET_ITERATOR_CHUNK_SIZE
self.assertNumQueries(queries, Avatar.objects.all().delete)
self.assertFalse(Avatar.objects.exists())