Commit 3e25c8ac authored by ramast's avatar ramast Committed by Baptiste Mispelon
Browse files

Fixed incorrect docstring in cache tests

parent 8fcc0140
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)