summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-08-28 08:44:26 +0200
committerClaude Paroz <claude@2xlibre.net>2014-08-28 08:46:54 +0200
commit9ac713645bb870c45d7aaf16b003e392f62d4ea3 (patch)
tree446fb9c27db23eb141a65acb59b93eede185259a /docs/howto
parent4883516bea2aebff38b193f4c9707928040d0f8a (diff)
[1.7.x] Fixed #23374 -- Renamed StaticLiveServerCase to StaticLiveServerTestCase
Refs #20739. Thanks Raphaƫl Hertzog for the report and the initial patch. Backport of 3a44e2000 from master.
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/static-files/index.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/howto/static-files/index.txt b/docs/howto/static-files/index.txt
index fea9866b10..2525881152 100644
--- a/docs/howto/static-files/index.txt
+++ b/docs/howto/static-files/index.txt
@@ -152,7 +152,7 @@ file-serving functionality: It doesn't know about the finders feature of the
collected under :setting:`STATIC_ROOT`.
Because of this, ``staticfiles`` ships its own
-:class:`django.contrib.staticfiles.testing.StaticLiveServerCase`, a subclass
+:class:`django.contrib.staticfiles.testing.StaticLiveServerTestCase`, a subclass
of the built-in one that has the ability to transparently serve all the assets
during execution of these tests in a way very similar to what we get at
development time with ``DEBUG = True``, i.e. without having to collect them
@@ -160,8 +160,8 @@ using :djadmin:`collectstatic` first.
.. versionadded:: 1.7
- :class:`django.contrib.staticfiles.testing.StaticLiveServerCase` is new in
- Django 1.7. Previously its functionality was provided by
+ :class:`django.contrib.staticfiles.testing.StaticLiveServerTestCase` is new
+ in Django 1.7. Previously its functionality was provided by
:class:`django.test.LiveServerTestCase`.
Deployment