diff options
Diffstat (limited to 'tests/cache')
| -rw-r--r-- | tests/cache/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cache/tests.py b/tests/cache/tests.py index dc4c69cd43..f0e55ced29 100644 --- a/tests/cache/tests.py +++ b/tests/cache/tests.py @@ -560,7 +560,7 @@ class BaseCacheTests(object): # Count how many keys are left in the cache. for i in range(1, initial_count): if cull_cache.has_key('cull%d' % i): - count = count + 1 + count += 1 self.assertEqual(count, final_count) def test_cull(self): |
