Ignored deprecation warnings for CreationIndexesTests

This commit is contained in:
Claude Paroz 2014-12-24 10:45:53 +01:00
parent 9699d8446e
commit b3ebcb22a9
1 changed files with 2 additions and 1 deletions

View File

@ -3,11 +3,12 @@ from unittest import skipUnless
from django.core.management.color import no_style from django.core.management.color import no_style
from django.db import connection from django.db import connection
from django.test import TestCase from django.test import TestCase
from django.test.utils import IgnorePendingDeprecationWarningsMixin
from .models import Article, IndexTogetherSingleList from .models import Article, IndexTogetherSingleList
class CreationIndexesTests(TestCase): class CreationIndexesTests(IgnorePendingDeprecationWarningsMixin, TestCase):
""" """
Test index handling by the to-be-deprecated connection.creation interface. Test index handling by the to-be-deprecated connection.creation interface.
""" """