diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-06-29 18:34:41 +0200 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-06-29 18:49:37 +0200 |
| commit | acd7b34aafe352ef604edcb73f75041c5cbba6b9 (patch) | |
| tree | eecb1df66a2070e9a357380fba89febd38c488f4 /tests/test_runner | |
| parent | 8b9b8d3bda09eb1b447631182d06c6c5e51425f6 (diff) | |
Advanced deprecation warnings for Django 1.7.
Diffstat (limited to 'tests/test_runner')
| -rw-r--r-- | tests/test_runner/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_runner/tests.py b/tests/test_runner/tests.py index 0dc7a0155a..53a268e823 100644 --- a/tests/test_runner/tests.py +++ b/tests/test_runner/tests.py @@ -11,7 +11,7 @@ from django.core.management import call_command from django import db from django.test import runner, TestCase, TransactionTestCase, skipUnlessDBFeature from django.test.testcases import connections_support_transactions -from django.test.utils import IgnorePendingDeprecationWarningsMixin +from django.test.utils import IgnoreDeprecationWarningsMixin from django.utils import unittest from django.utils.importlib import import_module @@ -225,7 +225,7 @@ class Ticket17477RegressionTests(AdminScriptTestCase): self.assertNoOutput(err) -class ModulesTestsPackages(IgnorePendingDeprecationWarningsMixin, unittest.TestCase): +class ModulesTestsPackages(IgnoreDeprecationWarningsMixin, unittest.TestCase): def test_get_tests(self): "Check that the get_tests helper function can find tests in a directory" from django.test.simple import get_tests |
