summaryrefslogtreecommitdiff
path: root/tests/cache
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-04 08:08:27 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-07 20:37:05 +0100
commit7119f40c9881666b6f9b5cf7df09ee1d21cc8344 (patch)
treefa50869f5614295f462d9bf77fec59365c621609 /tests/cache
parent9c19aff7c7561e3a82978a272ecdaad40dda5c00 (diff)
downloaddjango-7119f40c9881666b6f9b5cf7df09ee1d21cc8344.tar.gz
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Diffstat (limited to 'tests/cache')
-rw-r--r--tests/cache/tests.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/tests/cache/tests.py b/tests/cache/tests.py
index d010bc0708..40ba275eb7 100644
--- a/tests/cache/tests.py
+++ b/tests/cache/tests.py
@@ -1680,9 +1680,9 @@ class FileBasedCacheTests(BaseCacheTests, TestCase):
def setUp(self):
super().setUp()
self.dirname = self.mkdtemp()
- # Caches location cannot be modified through override_settings / modify_settings,
- # hence settings are manipulated directly here and the setting_changed signal
- # is triggered manually.
+ # Caches location cannot be modified through override_settings /
+ # modify_settings, hence settings are manipulated directly here and the
+ # setting_changed signal is triggered manually.
for cache_params in settings.CACHES.values():
cache_params["LOCATION"] = self.dirname
setting_changed.send(self.__class__, setting="CACHES", enter=False)
@@ -2079,7 +2079,8 @@ class CacheUtils(SimpleTestCase):
def test_patch_cache_control(self):
tests = (
- # Initial Cache-Control, kwargs to patch_cache_control, expected Cache-Control parts
+ # Initial Cache-Control, kwargs to patch_cache_control, expected
+ # Cache-Control parts.
(None, {"private": True}, {"private"}),
("", {"private": True}, {"private"}),
# no-cache.
@@ -2460,9 +2461,9 @@ class CacheMiddlewareTest(SimpleTestCase):
def test_constructor(self):
"""
- Ensure the constructor is correctly distinguishing between usage of CacheMiddleware as
- Middleware vs. usage of CacheMiddleware as view decorator and setting attributes
- appropriately.
+ The constructor is correctly distinguishing between usage of
+ CacheMiddleware as Middleware vs. usage of CacheMiddleware as view
+ decorator and setting attributes appropriately.
"""
# If only one argument is passed in construction, it's being used as
# middleware.