diff options
| author | Loic Bistuer <loic.bistuer@sixmedia.com> | 2013-12-09 00:20:06 +0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-12-10 15:12:48 -0500 |
| commit | a2814846ca006b4fbf3a893ec52cd9d444b3a3eb (patch) | |
| tree | 780498814e830e2b8ee6ac435575afdc2e8e63f6 /django/test/__init__.py | |
| parent | 0873200e7f61315ad375061a3dc6d37b514ff985 (diff) | |
Fixed E124 pep8 warnings.
Diffstat (limited to 'django/test/__init__.py')
| -rw-r--r-- | django/test/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/test/__init__.py b/django/test/__init__.py index 98ff4393a3..4b17ed18c9 100644 --- a/django/test/__init__.py +++ b/django/test/__init__.py @@ -3,7 +3,8 @@ Django Unit Test and Doctest framework. """ from django.test.client import Client, RequestFactory -from django.test.testcases import (TestCase, TransactionTestCase, +from django.test.testcases import ( + TestCase, TransactionTestCase, SimpleTestCase, LiveServerTestCase, skipIfDBFeature, skipUnlessDBFeature ) |
