diff options
| author | Dražen Odobašić <dodobas@candela-it.com> | 2015-09-11 19:33:12 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-09-12 11:40:50 -0400 |
| commit | b1e33ceceda1e75ff68c7deed8f6659683a195d3 (patch) | |
| tree | e4e446f69194f2dc3c9c7ee3ecf48290ea8d4d31 /tests/sites_framework/tests.py | |
| parent | 84b0a8d2aad042fb573df5055b6153770d0929ac (diff) | |
Fixed #23395 -- Limited line lengths to 119 characters.
Diffstat (limited to 'tests/sites_framework/tests.py')
| -rw-r--r-- | tests/sites_framework/tests.py | 5 |
1 files changed, 4 insertions, 1 deletions
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): |
