浏览代码

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
Jannis Leidel 13 年之前
父节点
当前提交
5180e733fa
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      django/test/simple.py

+ 1 - 1
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'