diff options
Diffstat (limited to 'django/test/utils.py')
-rw-r--r-- | django/test/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/test/utils.py b/django/test/utils.py index d2649ae96b..063e30297f 100644 --- a/django/test/utils.py +++ b/django/test/utils.py @@ -8,9 +8,10 @@ from django.test import signals from django.template import Template from django.utils.translation import deactivate -all = ('Approximate', 'ContextList', 'setup_test_environment', +__all__ = ('Approximate', 'ContextList', 'setup_test_environment', 'teardown_test_environment', 'get_runner') + class Approximate(object): def __init__(self, val, places=7): self.val = val |