From 966f652464d30b31b84d031fe7971e19362638ab Mon Sep 17 00:00:00 2001 From: Karen Tracey Date: Fri, 21 Nov 2008 16:54:10 +0000 Subject: [PATCH] Fixed #9615 -- Typo fix to testcase. Thanks jarrow. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9519 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/order_with_respect_to/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/modeltests/order_with_respect_to/models.py b/tests/modeltests/order_with_respect_to/models.py index 9c8917f59b..99c9f13e2e 100644 --- a/tests/modeltests/order_with_respect_to/models.py +++ b/tests/modeltests/order_with_respect_to/models.py @@ -68,7 +68,7 @@ The ordering can be altered: >>> id_list = [o.pk for o in q1.answer_set.all()] >>> x = id_list.pop() >>> id_list.insert(-1, x) ->>> a5.question.get_answer_order == id_list +>>> a5.question.get_answer_order() == id_list False >>> a5.question.set_answer_order(id_list) >>> q1.answer_set.all()