diff --git a/docs/ref/contrib/staticfiles.txt b/docs/ref/contrib/staticfiles.txt
index c24c8fc..39b904d 100644
a
|
b
|
hashing algorithm.
|
311 | 311 | .. _`url()`: http://www.w3.org/TR/CSS2/syndata.html#uri |
312 | 312 | .. _`Cascading Style Sheets`: http://www.w3.org/Style/CSS/ |
313 | 313 | |
| 314 | .. warning:: |
| 315 | |
| 316 | Using ``ManifestStaticFilesStorage`` requires you to run the :djadmin:`collectstatic` |
| 317 | management command to create the hashed names mapping in the file ``staticfiles.json``. |
| 318 | |
| 319 | Therefore, ``ManifestStaticFilesStorage`` should not be used when running tests. During testing, |
| 320 | make sure that the :setting:`STATICFILES_STORAGE` setting does not refer to |
| 321 | ``ManifestStaticFilesStorage``. |
| 322 | |
314 | 323 | CachedStaticFilesStorage |
315 | 324 | ------------------------ |
316 | 325 | |