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 | |
| parent | 0873200e7f61315ad375061a3dc6d37b514ff985 (diff) | |
Fixed E124 pep8 warnings.
Diffstat (limited to 'django/test')
| -rw-r--r-- | django/test/__init__.py | 3 | ||||
| -rw-r--r-- | django/test/simple.py | 3 |
2 files changed, 3 insertions, 3 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 ) diff --git a/django/test/simple.py b/django/test/simple.py index 05a7329fae..73deef917b 100644 --- a/django/test/simple.py +++ b/django/test/simple.py @@ -123,8 +123,7 @@ def get_tests(app_module): def make_doctest(module): return doctest.DocTestSuite(module, checker=doctestOutputChecker, - runner=DocTestRunner, - ) + runner=DocTestRunner) def build_suite(app_module): |
