summaryrefslogtreecommitdiff
path: root/tests/deprecation
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-06-29 18:34:41 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-06-29 18:49:37 +0200
commitacd7b34aafe352ef604edcb73f75041c5cbba6b9 (patch)
treeeecb1df66a2070e9a357380fba89febd38c488f4 /tests/deprecation
parent8b9b8d3bda09eb1b447631182d06c6c5e51425f6 (diff)
downloaddjango-acd7b34aafe352ef604edcb73f75041c5cbba6b9.tar.gz
Advanced deprecation warnings for Django 1.7.
Diffstat (limited to 'tests/deprecation')
-rw-r--r--tests/deprecation/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/deprecation/tests.py b/tests/deprecation/tests.py
index df752b3149..fda780c7e6 100644
--- a/tests/deprecation/tests.py
+++ b/tests/deprecation/tests.py
@@ -8,7 +8,7 @@ from django.utils.deprecation import RenameMethodsBase
class RenameManagerMethods(RenameMethodsBase):
renamed_methods = (
- ('old', 'new', PendingDeprecationWarning),
+ ('old', 'new', DeprecationWarning),
)