diff options
| author | David Sanders <dsanders11@ucsbalum.com> | 2017-01-11 07:21:29 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-01-11 09:21:29 -0500 |
| commit | 53bffe8d03f01bd3214a5404998cb965fb28cd0b (patch) | |
| tree | 48a5f276f9bab5c3dcaa74104307431c1c65781a /tests/staticfiles_tests/project | |
| parent | 7156a6c9c47fe599207673e1653b056cc46082f6 (diff) | |
Fixed #24452 -- Fixed HashedFilesMixin correctness with nested paths.
Diffstat (limited to 'tests/staticfiles_tests/project')
| -rw-r--r-- | tests/staticfiles_tests/project/loop/bar.css | 1 | ||||
| -rw-r--r-- | tests/staticfiles_tests/project/loop/foo.css | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/staticfiles_tests/project/loop/bar.css b/tests/staticfiles_tests/project/loop/bar.css new file mode 100644 index 0000000000..1f11a22cbf --- /dev/null +++ b/tests/staticfiles_tests/project/loop/bar.css @@ -0,0 +1 @@ +@import url("foo.css") diff --git a/tests/staticfiles_tests/project/loop/foo.css b/tests/staticfiles_tests/project/loop/foo.css new file mode 100644 index 0000000000..0903a70802 --- /dev/null +++ b/tests/staticfiles_tests/project/loop/foo.css @@ -0,0 +1 @@ +@import url("bar.css") |
