summaryrefslogtreecommitdiff
path: root/tests/indexes
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-12-24 10:45:53 +0100
committerClaude Paroz <claude@2xlibre.net>2014-12-24 10:45:53 +0100
commitb3ebcb22a9d131d61241c0a15b7df32479367c91 (patch)
tree1c24db733e560a76b93c274c56348409558cb772 /tests/indexes
parent9699d8446e6fed305671721d5b1259e3e01d3ebb (diff)
downloaddjango-b3ebcb22a9d131d61241c0a15b7df32479367c91.tar.gz
Ignored deprecation warnings for CreationIndexesTests
Diffstat (limited to 'tests/indexes')
-rw-r--r--tests/indexes/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/indexes/tests.py b/tests/indexes/tests.py
index 99adc73f9c..86000bb94c 100644
--- a/tests/indexes/tests.py
+++ b/tests/indexes/tests.py
@@ -3,11 +3,12 @@ from unittest import skipUnless
from django.core.management.color import no_style
from django.db import connection
from django.test import TestCase
+from django.test.utils import IgnorePendingDeprecationWarningsMixin
from .models import Article, IndexTogetherSingleList
-class CreationIndexesTests(TestCase):
+class CreationIndexesTests(IgnorePendingDeprecationWarningsMixin, TestCase):
"""
Test index handling by the to-be-deprecated connection.creation interface.
"""