summaryrefslogtreecommitdiff
path: root/docs/intro
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:28 -0400
commit7b08e01c1358aedbd46fa26c91d4613d642ff609 (patch)
tree4461e3190a3c4a69a3841dbe527aa26e06804300 /docs/intro
parent98385ac73b8880cb871b1b7c137f3cbdbda82185 (diff)
Refs #26747 -- Corrected a method name in tutorial05.
Diffstat (limited to 'docs/intro')
-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``