summaryrefslogtreecommitdiff
path: root/tests/cache
diff options
context:
space:
mode:
authorBaptiste Mispelon <bmispelon@gmail.com>2014-03-05 07:35:07 +0100
committerBaptiste Mispelon <bmispelon@gmail.com>2014-03-05 07:35:07 +0100
commit5a5815d373c1b4af073d330e6d658fa8e739dbe8 (patch)
tree5dff65af34afd43e1d2fe3e8e912ec2f8b0b5d48 /tests/cache
parent5d568bcfa66916e3de61e0090c724c899debd981 (diff)
Fixed incorrect docstring in cache tests (take two)
3e25c8ac69ae336102d91f1d2591ab03f3a91e33 was an incomplete merge of the pull request. Thanks to @ramast for catching this.
Diffstat (limited to 'tests/cache')
-rw-r--r--tests/cache/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cache/tests.py b/tests/cache/tests.py
index 6429ce4b0a..e2d027f689 100644
--- a/tests/cache/tests.py
+++ b/tests/cache/tests.py
@@ -496,7 +496,7 @@ class BaseCacheTests(object):
def test_zero_timeout(self):
'''
- Passing in zero into timeout results in a value that is cached forever
+ Passing in zero into timeout results in a value that is not cached
'''
cache.set('key1', 'eggs', 0)
self.assertEqual(cache.get('key1'), None)