summaryrefslogtreecommitdiff
path: root/tests/custom_methods
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2015-08-22 20:05:54 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2015-08-22 20:25:42 +0200
commit491d01b7e9e4244ff904af387f97e39b46786b5e (patch)
tree116ae58f713c8867c2ef67dc2999b9266ab339d5 /tests/custom_methods
parent0eb846605e56044b8f5334a7d735ed744b453c40 (diff)
downloaddjango-491d01b7e9e4244ff904af387f97e39b46786b5e.tar.gz
Tweak some examples.
"Area man/woman" is confusing to people not familiar with the conventions of American journalism (like me).
Diffstat (limited to 'tests/custom_methods')
-rw-r--r--tests/custom_methods/tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/custom_methods/tests.py b/tests/custom_methods/tests.py
index addb61d4c1..9186a41794 100644
--- a/tests/custom_methods/tests.py
+++ b/tests/custom_methods/tests.py
@@ -10,7 +10,7 @@ from .models import Article
class MethodsTests(TestCase):
def test_custom_methods(self):
a = Article.objects.create(
- headline="Area man programs in Python", pub_date=date(2005, 7, 27)
+ headline="Parrot programs in Python", pub_date=date(2005, 7, 27)
)
b = Article.objects.create(
headline="Beatles reunite", pub_date=date(2005, 7, 27)
@@ -32,13 +32,13 @@ class MethodsTests(TestCase):
self.assertQuerysetEqual(
b.articles_from_same_day_1(), [
- "Area man programs in Python",
+ "Parrot programs in Python",
],
lambda a: a.headline,
)
self.assertQuerysetEqual(
b.articles_from_same_day_2(), [
- "Area man programs in Python",
+ "Parrot programs in Python",
],
lambda a: a.headline
)