From 491d01b7e9e4244ff904af387f97e39b46786b5e Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sat, 22 Aug 2015 20:05:54 +0200 Subject: Tweak some examples. "Area man/woman" is confusing to people not familiar with the conventions of American journalism (like me). --- tests/custom_methods/tests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/custom_methods') 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 ) -- cgit v1.2.1