diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2014-04-21 12:25:43 +0200 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2014-04-21 12:27:34 +0200 |
| commit | 428c0bbe1bcd303560d7e96d7d2721ff3fdc0e3f (patch) | |
| tree | 474287f4b5e96203f941a6e4f9bb1f90257ccc74 /tests/staticfiles_tests | |
| parent | df3b1a01c7d6326e966fbe13aa149265f4bf9c8f (diff) | |
Appeased flake8 2.1.0.
Diffstat (limited to 'tests/staticfiles_tests')
| -rw-r--r-- | tests/staticfiles_tests/tests.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/staticfiles_tests/tests.py b/tests/staticfiles_tests/tests.py index 996e86e130..77179fb79d 100644 --- a/tests/staticfiles_tests/tests.py +++ b/tests/staticfiles_tests/tests.py @@ -848,9 +848,10 @@ class TestDefaultStorageFinder(StaticFilesTestCase, FinderTestCase): self.find_all = ('media-file.txt', [test_file_path]) -@override_settings(STATICFILES_FINDERS= - ('django.contrib.staticfiles.finders.FileSystemFinder',), - STATICFILES_DIRS=[os.path.join(TEST_ROOT, 'project', 'documents')]) +@override_settings( + STATICFILES_FINDERS=('django.contrib.staticfiles.finders.FileSystemFinder',), + STATICFILES_DIRS=[os.path.join(TEST_ROOT, 'project', 'documents')], +) class TestMiscFinder(TestCase): """ A few misc finder tests. |
