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/str/tests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/str') diff --git a/tests/str/tests.py b/tests/str/tests.py index 4139fa4354..03ff2b849c 100644 --- a/tests/str/tests.py +++ b/tests/str/tests.py @@ -15,11 +15,11 @@ class SimpleTests(TestCase): @skipIf(six.PY3, "tests a __str__ method returning unicode under Python 2") def test_basic(self): a = Article.objects.create( - headline=b'Area man programs in Python', + headline=b'Parrot programs in Python', pub_date=datetime.datetime(2005, 7, 28) ) - self.assertEqual(str(a), str('Area man programs in Python')) - self.assertEqual(repr(a), str('')) + self.assertEqual(str(a), str('Parrot programs in Python')) + self.assertEqual(repr(a), str('')) def test_international(self): a = InternationalArticle.objects.create( -- cgit v1.2.1