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
This commit is contained in:
Jannis Leidel 2011-06-14 09:30:52 +00:00
parent 823bac36db
commit 5180e733fa
1 changed files with 1 additions and 1 deletions

View File

@ -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'