From 0b5362818704f1aee54017e32013761d3a695fa1 Mon Sep 17 00:00:00 2001 From: GappleBee Date: Thu, 24 Oct 2024 20:13:15 +0100 Subject: [PATCH] Updated tests. --- tests/staticfiles_tests/test_storage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/staticfiles_tests/test_storage.py b/tests/staticfiles_tests/test_storage.py index 042a5f2665..76a27dd111 100644 --- a/tests/staticfiles_tests/test_storage.py +++ b/tests/staticfiles_tests/test_storage.py @@ -676,7 +676,7 @@ class TestCollectionJSModuleImportAggregationManifestStorage(CollectionTestCase) def test_module_import(self): relpath = self.hashed_file_path("cached/module.js") - self.assertEqual(relpath, "cached/module.f0c3a6133ad5.js") + self.assertEqual(relpath, "cached/module.6f5edad590fa.js") tests = [ # Relative imports. b'import testConst from "./module_test.477bbebe77f0.js";', @@ -708,7 +708,7 @@ class TestCollectionJSModuleImportAggregationManifestStorage(CollectionTestCase) def test_aggregating_modules(self): relpath = self.hashed_file_path("cached/module.js") - self.assertEqual(relpath, "cached/module.f0c3a6133ad5.js") + self.assertEqual(relpath, "cached/module.6f5edad590fa.js") tests = [ b'export * from "./module_test.477bbebe77f0.js";', b'export { testConst } from "./module_test.477bbebe77f0.js";',