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