From e5103de2d1a461544b73542df3ed0ad71a73dc21 Mon Sep 17 00:00:00 2001 From: Vincent Zhang Date: Fri, 19 Aug 2016 11:10:28 -0400 Subject: [PATCH] [1.10.x] Refs #26747 -- Corrected a method name in tutorial05. Backport of 7b08e01c1358aedbd46fa26c91d4613d642ff609 from master --- docs/intro/tutorial05.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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``