summaryrefslogtreecommitdiff
path: root/django/test
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-01-31 10:44:08 -0800
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-01-31 10:44:08 -0800
commit31308b3195b84bf6dfa14416db27ba5c1e91e3ad (patch)
treea6ad32bec1585ada825bc89111fc7e254e21ad4f /django/test
parent7947c9e3a6bd8c1dfe7fc209fb2256a528149bb6 (diff)
parentd877778bf39184d5b203eaf0add7c4265f820e02 (diff)
downloaddjango-31308b3195b84bf6dfa14416db27ba5c1e91e3ad.tar.gz
Merge pull request #690 from rafales/ticket_19711
Fixed #19711 -- Typo in django.test.simple.__all__
Diffstat (limited to 'django/test')
-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 8faf1e4f93..684e3193a2 100644
--- a/django/test/simple.py
+++ b/django/test/simple.py
@@ -11,7 +11,7 @@ from django.utils import unittest
from django.utils.importlib import import_module
from django.utils.module_loading import module_has_submodule
-__all__ = ('DjangoTestSuiteRunner')
+__all__ = ('DjangoTestSuiteRunner',)
# The module name for tests outside models.py
TEST_MODULE = 'tests'