mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Fixed #18430 -- Use the FILE_CHARSET setting when reading from a file during post processing with the cached staticfiles storage. Thanks to Brant Young for initial debugging.
This commit is contained in:
parent
0a68a2994b
commit
3727f6d096
4 changed files with 9 additions and 3 deletions
|
@ -498,8 +498,9 @@ class TestCollectionCachedStorage(BaseCollectionTestCase,
|
|||
collectstatic_cmd = CollectstaticCommand()
|
||||
collectstatic_cmd.set_options(**collectstatic_args)
|
||||
stats = collectstatic_cmd.collect()
|
||||
self.assertTrue(os.path.join('cached', 'css', 'window.css') in stats['post_processed'])
|
||||
self.assertTrue(os.path.join('cached', 'css', 'img', 'window.png') in stats['unmodified'])
|
||||
self.assertIn(os.path.join('cached', 'css', 'window.css'), stats['post_processed'])
|
||||
self.assertIn(os.path.join('cached', 'css', 'img', 'window.png'), stats['unmodified'])
|
||||
self.assertIn(os.path.join('test', 'nonascii.css'), stats['post_processed'])
|
||||
|
||||
def test_cache_key_memcache_validation(self):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue