summaryrefslogtreecommitdiff
path: root/tests/flatpages_tests
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2017-12-28 21:07:29 +0100
committerGitHub <noreply@github.com>2017-12-28 21:07:29 +0100
commit83a36ac49a98d5d8801ed8428612e9a56aeb8699 (patch)
tree192e9bb3f114dad49ffacb17d51a8ecc9faed797 /tests/flatpages_tests
parent058d112ed2635873d415661bdf0fcc8752ec37c9 (diff)
downloaddjango-83a36ac49a98d5d8801ed8428612e9a56aeb8699.tar.gz
Removed unnecessary trailing commas and spaces in various code.
Diffstat (limited to 'tests/flatpages_tests')
-rw-r--r--tests/flatpages_tests/test_forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/flatpages_tests/test_forms.py b/tests/flatpages_tests/test_forms.py
index 9ed678fdc2..2a4bb0679a 100644
--- a/tests/flatpages_tests/test_forms.py
+++ b/tests/flatpages_tests/test_forms.py
@@ -6,7 +6,7 @@ from django.test import TestCase, modify_settings, override_settings
from django.utils import translation
-@modify_settings(INSTALLED_APPS={'append': ['django.contrib.flatpages', ]})
+@modify_settings(INSTALLED_APPS={'append': ['django.contrib.flatpages']})
@override_settings(SITE_ID=1)
class FlatpageAdminFormTests(TestCase):