summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorramast <ramast.com@gmail.com>2014-03-04 21:33:28 +0200
committerBaptiste Mispelon <bmispelon@gmail.com>2014-03-04 21:50:21 +0100
commit3e25c8ac69ae336102d91f1d2591ab03f3a91e33 (patch)
tree9f04107ffb8d563d5420f80c8b0f1b926312ef63 /tests
parent8fcc0140d075688e7b0565dea225f4380fc638c4 (diff)
Fixed incorrect docstring in cache tests
Diffstat (limited to 'tests')
-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 2afc835bed..6429ce4b0a 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 None into timeout results in a value that is cached forever
+ Passing in zero into timeout results in a value that is cached forever
'''
cache.set('key1', 'eggs', 0)
self.assertEqual(cache.get('key1'), None)