summaryrefslogtreecommitdiff
path: root/tests/custom_columns/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/custom_columns/tests.py')
-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
)