summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorVincent Zhang <vincenttide@gmail.com>2016-08-19 11:10:28 -0400
committerTim Graham <timograham@gmail.com>2016-08-19 11:10:40 -0400
commite5103de2d1a461544b73542df3ed0ad71a73dc21 (patch)
tree92e5e206e82cb35770561e58dc2ad1925734db6c /docs
parent557c1a6a4203e16eb826542d441f0968046e5d4c (diff)
[1.10.x] Refs #26747 -- Corrected a method name in tutorial05.
Backport of 7b08e01c1358aedbd46fa26c91d4613d642ff609 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/intro/tutorial05.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt
index f88f6686bd..3f56166ed4 100644
--- a/docs/intro/tutorial05.txt
+++ b/docs/intro/tutorial05.txt
@@ -225,7 +225,7 @@ What happened is this:
* in ``test_was_published_recently_with_future_question`` it created a ``Question``
instance whose ``pub_date`` field is 30 days in the future
-* ... and using the ``assertEqual()`` method, it discovered that its
+* ... and using the ``assertIs()`` method, it discovered that its
``was_published_recently()`` returns ``True``, though we wanted it to return
``False``