summaryrefslogtreecommitdiff
path: root/tests/custom_columns
diff options
context:
space:
mode:
authorDavid Smith <smithdc@gmail.com>2021-07-23 07:48:16 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-07-29 06:24:12 +0200
commit1024b5e74a7166313ad4e4975a15e90dccd3ec5f (patch)
tree05d75177f183de5e3c58dbf25a3f71ff4a5c820a /tests/custom_columns
parentacde91745656a852a15db7611c08cabf93bb735b (diff)
downloaddjango-1024b5e74a7166313ad4e4975a15e90dccd3ec5f.tar.gz
Fixed 32956 -- Lowercased spelling of "web" and "web framework" where appropriate.
Diffstat (limited to 'tests/custom_columns')
-rw-r--r--tests/custom_columns/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/custom_columns/tests.py b/tests/custom_columns/tests.py
index b389a7e02f..20e649de03 100644
--- a/tests/custom_columns/tests.py
+++ b/tests/custom_columns/tests.py
@@ -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
)