summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2008-11-21 16:54:10 +0000
committerKaren Tracey <kmtracey@gmail.com>2008-11-21 16:54:10 +0000
commit966f652464d30b31b84d031fe7971e19362638ab (patch)
tree0db271952156ce6460243c4d78a0c0220ccb25a9
parenta5172c3e1f03e4c7f3d52d654381342a6995dfbc (diff)
Fixed #9615 -- Typo fix to testcase. Thanks jarrow.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9519 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--tests/modeltests/order_with_respect_to/models.py2
1 files changed, 1 insertions, 1 deletions
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()