summaryrefslogtreecommitdiff
path: root/tests/staticfiles_tests
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2021-08-12 01:28:32 -0400
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-08-19 12:49:46 +0200
commitfaf6d48590386987a08178ca0d7154b1500560b8 (patch)
tree5e4b9ae47f8facedf441a32d48c0ca5114d133ad /tests/staticfiles_tests
parent7800596924375978df3ca995df4c3466f1cd168e (diff)
downloaddjango-faf6d48590386987a08178ca0d7154b1500560b8.tar.gz
Removed reference to nonexistent collectstatic --exclude-dirs option.
Diffstat (limited to 'tests/staticfiles_tests')
-rw-r--r--tests/staticfiles_tests/test_management.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/staticfiles_tests/test_management.py b/tests/staticfiles_tests/test_management.py
index a94f51e4dd..7ebac48239 100644
--- a/tests/staticfiles_tests/test_management.py
+++ b/tests/staticfiles_tests/test_management.py
@@ -311,10 +311,10 @@ class TestInteractiveMessages(CollectionTestCase):
call_command('collectstatic', interactive=True)
-class TestCollectionExcludeNoDefaultIgnore(TestDefaults, CollectionTestCase):
+class TestCollectionNoDefaultIgnore(TestDefaults, CollectionTestCase):
"""
- Test ``--exclude-dirs`` and ``--no-default-ignore`` options of the
- ``collectstatic`` management command.
+ The ``--no-default-ignore`` option of the ``collectstatic`` management
+ command.
"""
def run_collectstatic(self):
super().run_collectstatic(use_default_ignore_patterns=False)