summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2011-08-13 00:42:08 +0000
committerRamiro Morales <cramm0@gmail.com>2011-08-13 00:42:08 +0000
commit326949e444bcdde966d2421e2fb8bd8c87c65941 (patch)
treeecf7f1ebf24d0747026e0a1f0e7f25fcedcd9fe9 /docs/ref
parenta539d434d9451eb201d8b79b45740e192c1736ca (diff)
Fixed #14503 -- Unified multiple implementations of test cases assert* methods that verify a given exception is raised by a callable throughout the Django test suite.
Replaced them with a new assertRaisesMessage method of a new SimpleTestCase, a lightweight subclass of unittest.TestCase. Both are also available for usage in user tests. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16610 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/signals.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt
index b265d078eb..5f55bbe418 100644
--- a/docs/ref/signals.txt
+++ b/docs/ref/signals.txt
@@ -480,7 +480,7 @@ setting_changed
.. data:: django.test.signals.setting_changed
:module:
-Sent when some :ref:`settings are overridden <overriding-setting>` with the
+Sent when some :ref:`settings are overridden <overriding-settings>` with the
:meth:`django.test.TestCase.setting` context manager or the
:func:`django.test.utils.override_settings` decorator/context manager.