From 5a5815d373c1b4af073d330e6d658fa8e739dbe8 Mon Sep 17 00:00:00 2001 From: Baptiste Mispelon Date: Wed, 5 Mar 2014 07:35:07 +0100 Subject: [PATCH] Fixed incorrect docstring in cache tests (take two) 3e25c8ac69ae336102d91f1d2591ab03f3a91e33 was an incomplete merge of the pull request. Thanks to @ramast for catching this. --- 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 6429ce4b0a7..e2d027f6896 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)