mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Tweak some examples.
"Area man/woman" is confusing to people not familiar with the conventions of American journalism (like me).
This commit is contained in:
parent
0eb846605e
commit
491d01b7e9
5 changed files with 29 additions and 29 deletions
|
@ -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
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue