summaryrefslogtreecommitdiff
path: root/tests/staticfiles_tests/test_storage.py
diff options
context:
space:
mode:
authorTom Carrick <tom@carrick.eu>2024-06-30 11:46:56 +0200
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2024-07-11 08:03:21 +0200
commit7264d7f7509f875d2676e40924092c71b5c5b411 (patch)
treecdbd1fc8e7549465d2abbe03a39321af8a472c9c /tests/staticfiles_tests/test_storage.py
parentb9098538a966fdc1f2b5ee51c094ca3de4db6344 (diff)
Fixed syntax of CSS file used in tests.
Diffstat (limited to 'tests/staticfiles_tests/test_storage.py')
-rw-r--r--tests/staticfiles_tests/test_storage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/staticfiles_tests/test_storage.py b/tests/staticfiles_tests/test_storage.py
index 469d5ec690..030b7dc6db 100644
--- a/tests/staticfiles_tests/test_storage.py
+++ b/tests/staticfiles_tests/test_storage.py
@@ -101,7 +101,7 @@ class TestHashedFiles:
def test_path_with_querystring_and_fragment(self):
relpath = self.hashed_file_path("cached/css/fragments.css")
- self.assertEqual(relpath, "cached/css/fragments.a60c0e74834f.css")
+ self.assertEqual(relpath, "cached/css/fragments.7fe344dee895.css")
with storage.staticfiles_storage.open(relpath) as relfile:
content = relfile.read()
self.assertIn(b"fonts/font.b9b105392eb8.eot?#iefix", content)