Skip to content

Commit

Permalink
Fixed incorrect docstring in cache tests (take two)
Browse files Browse the repository at this point in the history
3e25c8a was an incomplete
merge of the pull request.

Thanks to @ramast for catching this.
  • Loading branch information
bmispelon committed Mar 5, 2014
1 parent 5d568bc commit 5a5815d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cache/tests.py
Expand Up @@ -496,7 +496,7 @@ def test_forever_timeout(self):


def test_zero_timeout(self): 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) cache.set('key1', 'eggs', 0)
self.assertEqual(cache.get('key1'), None) self.assertEqual(cache.get('key1'), None)
Expand Down

0 comments on commit 5a5815d

Please sign in to comment.