mirror of
https://github.com/django/django.git
synced 2025-08-01 17:42:56 +00:00
Fixed #23395 -- Limited line lengths to 119 characters.
This commit is contained in:
parent
84b0a8d2aa
commit
b1e33ceced
130 changed files with 5259 additions and 1501 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue