From acd7b34aafe352ef604edcb73f75041c5cbba6b9 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sat, 29 Jun 2013 18:34:41 +0200 Subject: Advanced deprecation warnings for Django 1.7. --- tests/test_utils/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_utils') diff --git a/tests/test_utils/tests.py b/tests/test_utils/tests.py index 8c6c15e357..ec98a845a0 100644 --- a/tests/test_utils/tests.py +++ b/tests/test_utils/tests.py @@ -7,7 +7,7 @@ from django.http import HttpResponse from django.template.loader import render_to_string from django.test import SimpleTestCase, TestCase, skipUnlessDBFeature from django.test.html import HTMLParseError, parse_html -from django.test.utils import CaptureQueriesContext, IgnorePendingDeprecationWarningsMixin +from django.test.utils import CaptureQueriesContext, IgnoreDeprecationWarningsMixin from django.utils import six from django.utils import unittest from django.utils.unittest import skip @@ -591,7 +591,7 @@ class AssertFieldOutputTests(SimpleTestCase): self.assertFieldOutput(MyCustomField, {}, {}, empty_value=None) -class DoctestNormalizerTest(IgnorePendingDeprecationWarningsMixin, SimpleTestCase): +class DoctestNormalizerTest(IgnoreDeprecationWarningsMixin, SimpleTestCase): def test_normalizer(self): from django.test.simple import make_doctest -- cgit v1.3