summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-08 09:44:21 -0500
committerTim Graham <timograham@gmail.com>2015-01-08 09:44:21 -0500
commitbbcbacf0ad4fc9aa89d13c35f4b084185b284a49 (patch)
treec9812b257725d9ef91afa83d9e225fbacac52782
parent600ea43e6735cfc035dc4a17ab23fd7927f1f9ee (diff)
[1.7.x] Silenced deprecation warning in test_runner app.
-rw-r--r--tests/test_runner/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_runner/tests.py b/tests/test_runner/tests.py
index dbee0b8c56..339cec612b 100644
--- a/tests/test_runner/tests.py
+++ b/tests/test_runner/tests.py
@@ -247,7 +247,7 @@ class ModulesTestsPackages(IgnoreAllDeprecationWarningsMixin, unittest.TestCase)
get_tests(app_config)
-class LabelDiscoveryTest(TestCase):
+class LabelDiscoveryTest(IgnoreAllDeprecationWarningsMixin, TestCase):
@override_settings(INSTALLED_APPS=['test_runner.valid_app'])
def test_discover_within_package(self):