summaryrefslogtreecommitdiff
path: root/docs/topics/testing/tools.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-12-31 08:10:37 -0500
committerTim Graham <timograham@gmail.com>2017-01-17 20:52:01 -0500
commit7510b872e7a2c06e935b0469813320a65f679f64 (patch)
tree47f63363d38678deef099e4e37768ed323580a16 /docs/topics/testing/tools.txt
parent9f9a3d643ec52c5cfb08c1546d6855fb60e702a9 (diff)
Refs #25190 -- Removed callable_obj parameter to assertRaisesMessages().
Per deprecation timeline.
Diffstat (limited to 'docs/topics/testing/tools.txt')
-rw-r--r--docs/topics/testing/tools.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index 7c40955a0c..5bb34be1a3 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -1351,11 +1351,6 @@ your test suite.
with self.assertRaisesMessage(ValueError, 'invalid literal for int()'):
int('a')
- .. deprecated:: 1.9
-
- Passing ``callable`` as a keyword argument called ``callable_obj`` is
- deprecated. Pass the callable as a positional argument instead.
-
.. method:: SimpleTestCase.assertFieldOutput(fieldclass, valid, invalid, field_args=None, field_kwargs=None, empty_value='')
Asserts that a form field behaves correctly with various inputs.