Fixed #6727 -- Made patch_cache_control() patch an empty Cache-Control header.

This commit is contained in:
Dwight Gunning 2015-11-07 16:26:38 +01:00 committed by Tim Graham
parent 1155843a41
commit 1f29164ced
2 changed files with 2 additions and 1 deletions

View file

@ -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'}),