summaryrefslogtreecommitdiff
path: root/tests/logging_tests
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2018-03-16 10:54:34 +0100
committerGitHub <noreply@github.com>2018-03-16 10:54:34 +0100
commit362813d6287925b8f63f0b107c55a74d95f5825e (patch)
treeefd69a3deb9e837624279e5abfdd8d55d57dcd7c /tests/logging_tests
parentaeb8c381789ad93866223f8bd07d09ae5e2edd9e (diff)
downloaddjango-362813d6287925b8f63f0b107c55a74d95f5825e.tar.gz
Fixed hanging indentation in various code.
Diffstat (limited to 'tests/logging_tests')
-rw-r--r--tests/logging_tests/tests.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/logging_tests/tests.py b/tests/logging_tests/tests.py
index 8b2b093339..0330fdccf5 100644
--- a/tests/logging_tests/tests.py
+++ b/tests/logging_tests/tests.py
@@ -390,8 +390,10 @@ class SetupConfigureLogging(SimpleTestCase):
"""
Calling django.setup() initializes the logging configuration.
"""
- @override_settings(LOGGING_CONFIG='logging_tests.tests.dictConfig',
- LOGGING=OLD_LOGGING)
+ @override_settings(
+ LOGGING_CONFIG='logging_tests.tests.dictConfig',
+ LOGGING=OLD_LOGGING,
+ )
def test_configure_initializes_logging(self):
from django import setup
setup()