diff options
| author | Adam Taylor <ataylor32@gmail.com> | 2015-01-20 07:54:12 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-20 12:18:29 -0500 |
| commit | 45aaced91e4789c3a08b17f0908010923361dbec (patch) | |
| tree | f15fcd7d2a029c173f402083b51d7419b0031008 /tests/delete | |
| parent | 90d9bf5ba46f806e7d4a7d19023f8d19028c4a27 (diff) | |
[1.8.x] Fixed typos in code comments.
Backport of 039465a6a7a18f48ea77ceadb6949990c0ec92e1 from master
Diffstat (limited to 'tests/delete')
| -rw-r--r-- | tests/delete/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/delete/tests.py b/tests/delete/tests.py index 2d6c02b9a9..c04284e069 100644 --- a/tests/delete/tests.py +++ b/tests/delete/tests.py @@ -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()) |
