From 3e25c8ac69ae336102d91f1d2591ab03f3a91e33 Mon Sep 17 00:00:00 2001 From: ramast Date: Tue, 4 Mar 2014 21:33:28 +0200 Subject: [PATCH] Fixed incorrect docstring in cache tests --- tests/cache/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)