summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDwight Gunning <dwight@dwightgunning.com>2015-11-07 16:26:38 +0100
committerTim Graham <timograham@gmail.com>2015-11-09 14:26:29 -0500
commit1f29164ced01bde92c72d20d67bc453484a4f078 (patch)
tree0ad75f315d96530ff935ccf991d6c218308f6657 /tests
parent1155843a41af589a856efe8e671a796866430049 (diff)
Fixed #6727 -- Made patch_cache_control() patch an empty Cache-Control header.
Diffstat (limited to 'tests')
-rw-r--r--tests/cache/tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/cache/tests.py b/tests/cache/tests.py
index 066ffad3e2..ba3745847b 100644
--- a/tests/cache/tests.py
+++ b/tests/cache/tests.py
@@ -1456,6 +1456,7 @@ class CacheUtils(SimpleTestCase):
tests = (
# Initial Cache-Control, kwargs to patch_cache_control, expected Cache-Control parts
(None, {'private': True}, {'private'}),
+ ('', {'private': True}, {'private'}),
# Test whether private/public attributes are mutually exclusive
('private', {'private': True}, {'private'}),