diff options
| author | Tim Graham <timograham@gmail.com> | 2015-06-15 14:07:31 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-06-27 11:53:33 -0400 |
| commit | 7da3923ba0c569aa23d0ab0a47a124af60a18f5b (patch) | |
| tree | 32f3e3bebb9cf0a404669a6113245e04f5d9cb80 /django/test/__init__.py | |
| parent | 4a66a69239c493c05b322815b18c605cd4c96e7c (diff) | |
Sorted imports in __init__.py files.
Diffstat (limited to 'django/test/__init__.py')
| -rw-r--r-- | django/test/__init__.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/django/test/__init__.py b/django/test/__init__.py index 884b1c5ee3..7ba1e7f282 100644 --- a/django/test/__init__.py +++ b/django/test/__init__.py @@ -4,12 +4,13 @@ Django Unit Test and Doctest framework. from django.test.client import Client, RequestFactory from django.test.testcases import ( - TestCase, TransactionTestCase, - SimpleTestCase, LiveServerTestCase, skipIfDBFeature, - skipUnlessAnyDBFeature, skipUnlessDBFeature + LiveServerTestCase, SimpleTestCase, TestCase, TransactionTestCase, + skipIfDBFeature, skipUnlessAnyDBFeature, skipUnlessDBFeature, +) +from django.test.utils import ( + ignore_warnings, modify_settings, override_settings, + override_system_checks, ) -from django.test.utils import (ignore_warnings, modify_settings, - override_settings, override_system_checks) __all__ = [ 'Client', 'RequestFactory', 'TestCase', 'TransactionTestCase', |
