Kaydet (Commit) 3e25c8ac authored tarafından ramast's avatar ramast Kaydeden (comit) Baptiste Mispelon

Fixed incorrect docstring in cache tests

üst 8fcc0140
...@@ -496,7 +496,7 @@ class BaseCacheTests(object): ...@@ -496,7 +496,7 @@ class BaseCacheTests(object):
def test_zero_timeout(self): 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) cache.set('key1', 'eggs', 0)
self.assertEqual(cache.get('key1'), None) self.assertEqual(cache.get('key1'), None)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment