summaryrefslogtreecommitdiff
path: root/tests/str
diff options
context:
space:
mode:
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(