summaryrefslogtreecommitdiff
path: root/tests/str
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/str
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/str')
-rw-r--r--tests/str/tests.py6
1 files changed, 3 insertions, 3 deletions
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('<Article: Area man programs in Python>'))
+ self.assertEqual(str(a), str('Parrot programs in Python'))
+ self.assertEqual(repr(a), str('<Article: Parrot programs in Python>'))
def test_international(self):
a = InternationalArticle.objects.create(