Fixed incorrect docstring in cache tests

This commit is contained in:
ramast 2014-03-04 21:33:28 +02:00 committed by Baptiste Mispelon
parent 8fcc0140d0
commit 3e25c8ac69
1 changed files with 1 additions and 1 deletions

View File

@ -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)