From b1e33ceceda1e75ff68c7deed8f6659683a195d3 Mon Sep 17 00:00:00 2001 From: Dražen Odobašić Date: Fri, 11 Sep 2015 19:33:12 -0400 Subject: Fixed #23395 -- Limited line lengths to 119 characters. --- tests/sites_framework/tests.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/sites_framework') diff --git a/tests/sites_framework/tests.py b/tests/sites_framework/tests.py index 681bfe5b03..ca516388cf 100644 --- a/tests/sites_framework/tests.py +++ b/tests/sites_framework/tests.py @@ -36,7 +36,10 @@ class SitesFrameworkTestCase(TestCase): self.assertEqual(SyndicatedArticle.on_site.all().get(), article) def test_custom_named_field(self): - article = CustomArticle.objects.create(title="Tantalizing News!", places_this_article_should_appear_id=settings.SITE_ID) + article = CustomArticle.objects.create( + title="Tantalizing News!", + places_this_article_should_appear_id=settings.SITE_ID, + ) self.assertEqual(CustomArticle.on_site.all().get(), article) def test_invalid_name(self): -- cgit v1.3