From b3ebcb22a9d131d61241c0a15b7df32479367c91 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Wed, 24 Dec 2014 10:45:53 +0100 Subject: [PATCH] Ignored deprecation warnings for CreationIndexesTests --- tests/indexes/tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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. """