Ticket #16686: 16686.patch
File 16686.patch, 679 bytes (added by , 13 years ago) |
---|
-
tests/regressiontests/cache/tests.py
1408 1408 1409 1409 other_view = cache_page(cache='other')(hello_world_view) 1410 1410 other_with_prefix_view = cache_page(cache='other', key_prefix='prefix2')(hello_world_view) 1411 other_with_timeout_view = cache_page( 4, cache='other', key_prefix='prefix3')(hello_world_view)1411 other_with_timeout_view = cache_page(3, cache='other', key_prefix='prefix3')(hello_world_view) 1412 1412 1413 1413 request = self.factory.get('/view/') 1414 1414