Loading tests/indexes/tests.py +2 −1 Original line number Diff line number Diff line Loading @@ -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. """ Loading Loading
tests/indexes/tests.py +2 −1 Original line number Diff line number Diff line Loading @@ -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. """ Loading