mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed 32956 -- Lowercased spelling of "web" and "web framework" where appropriate.
This commit is contained in:
parent
acde917456
commit
1024b5e74a
113 changed files with 265 additions and 267 deletions
|
@ -12,7 +12,7 @@ class CustomColumnsTests(TestCase):
|
|||
cls.a2 = Author.objects.create(first_name="Peter", last_name="Jones")
|
||||
cls.authors = [cls.a1, cls.a2]
|
||||
|
||||
cls.article = Article.objects.create(headline="Django lets you build Web apps easily", primary_author=cls.a1)
|
||||
cls.article = Article.objects.create(headline="Django lets you build web apps easily", primary_author=cls.a1)
|
||||
cls.article.authors.set(cls.authors)
|
||||
|
||||
def test_query_all_available_authors(self):
|
||||
|
@ -64,7 +64,7 @@ class CustomColumnsTests(TestCase):
|
|||
def test_get_all_articles_for_an_author(self):
|
||||
self.assertQuerysetEqual(
|
||||
self.a1.article_set.all(), [
|
||||
"Django lets you build Web apps easily",
|
||||
"Django lets you build web apps easily",
|
||||
],
|
||||
lambda a: a.headline
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue