From 5180e733faf4c7c650fbf3e70955b3fbfd66855c Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Tue, 14 Jun 2011 09:30:52 +0000 Subject: [PATCH] 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 --- django/test/simple.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'