summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2011-06-14 09:30:52 +0000
committerJannis Leidel <jannis@leidel.info>2011-06-14 09:30:52 +0000
commit5180e733faf4c7c650fbf3e70955b3fbfd66855c (patch)
treee1fa8425cc6206dc664f51dbd5bf6671623b1805
parent823bac36db2e4679d03fdc36e318da779767cac6 (diff)
Fixed #16239 -- Removed stale entry in django.test.simple.__all__. Thanks, melinath.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16396 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/test/simple.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/simple.py b/django/test/simple.py
index b094465bf5..c9adfd22bb 100644
--- a/django/test/simple.py
+++ b/django/test/simple.py
@@ -10,7 +10,7 @@ from django.utils import unittest
from django.utils.importlib import import_module
from django.utils.module_loading import module_has_submodule
-__all__ = ('DjangoTestRunner', 'DjangoTestSuiteRunner', 'run_tests')
+__all__ = ('DjangoTestRunner', 'DjangoTestSuiteRunner')
# The module name for tests outside models.py
TEST_MODULE = 'tests'