summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-01-10 10:06:07 -0500
committerTim Graham <timograham@gmail.com>2017-01-17 20:52:05 -0500
commitf8473082004ccdc764ad08beeb7c2a17b238dc85 (patch)
tree4c11fc079d8498f4ff315155613c92f4b651b036 /tests
parente27e4c03399f610e0db1fb9b881095d762fda2b7 (diff)
Advanced deprecation warnings for Django 2.0.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtests.py b/tests/runtests.py
index a99ebd63c3..82cd8207ba 100755
--- a/tests/runtests.py
+++ b/tests/runtests.py
@@ -20,12 +20,12 @@ from django.test.utils import get_runner
from django.utils import six
from django.utils._os import upath
from django.utils.deprecation import (
- RemovedInDjango20Warning, RemovedInDjango21Warning,
+ RemovedInDjango21Warning, RemovedInDjango30Warning,
)
from django.utils.log import DEFAULT_LOGGING
# Make deprecation warnings errors to ensure no usage of deprecated features.
-warnings.simplefilter("error", RemovedInDjango20Warning)
+warnings.simplefilter("error", RemovedInDjango30Warning)
warnings.simplefilter("error", RemovedInDjango21Warning)
# Make runtime warning errors to ensure no usage of error prone patterns.
warnings.simplefilter("error", RuntimeWarning)