Commit b3ebcb22 authored by Claude Paroz's avatar Claude Paroz
Browse files

Ignored deprecation warnings for CreationIndexesTests

parent 9699d844
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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.
    """