Author: jezdez
Date: 2011-09-08 06:25:24 -0700 (Thu, 08 Sep 2011)
New Revision: 16728

Modified:
   django/trunk/tests/regressiontests/cache/tests.py
Log:
Fixed #16686 -- Reduced time to wait for cache expiration in a test to 
alleviate race-condition-y effects.

Modified: django/trunk/tests/regressiontests/cache/tests.py
===================================================================
--- django/trunk/tests/regressiontests/cache/tests.py   2011-09-08 13:25:17 UTC 
(rev 16727)
+++ django/trunk/tests/regressiontests/cache/tests.py   2011-09-08 13:25:24 UTC 
(rev 16728)
@@ -1408,7 +1408,7 @@
 
         other_view = cache_page(cache='other')(hello_world_view)
         other_with_prefix_view = cache_page(cache='other', 
key_prefix='prefix2')(hello_world_view)
-        other_with_timeout_view = cache_page(4, cache='other', 
key_prefix='prefix3')(hello_world_view)
+        other_with_timeout_view = cache_page(3, cache='other', 
key_prefix='prefix3')(hello_world_view)
 
         request = self.factory.get('/view/')
 

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to