From e84f79f05113f546810c1908c7baef99fb1e874a Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Thu, 3 May 2012 15:27:01 +0200 Subject: Fixed #18042 -- Advanced deprecation warnings. Thanks Ramiro for the patch. --- tests/regressiontests/cache/tests.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests/regressiontests/cache') diff --git a/tests/regressiontests/cache/tests.py b/tests/regressiontests/cache/tests.py index 00ccda6102..16368c6fe9 100644 --- a/tests/regressiontests/cache/tests.py +++ b/tests/regressiontests/cache/tests.py @@ -1442,12 +1442,18 @@ def hello_world_view(request, value): ) class CacheMiddlewareTest(TestCase): + # The following tests will need to be modified in Django 1.6 to not use + # deprecated ways of using the cache_page decorator that will be removed in + # such version def setUp(self): self.factory = RequestFactory() self.default_cache = get_cache('default') self.other_cache = get_cache('other') + self.save_warnings_state() + warnings.filterwarnings('ignore', category=DeprecationWarning, module='django.views.decorators.cache') def tearDown(self): + self.restore_warnings_state() self.default_cache.clear() self.other_cache.clear() -- cgit v1.3