summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2008-11-21 16:56:24 +0000
committerKaren Tracey <kmtracey@gmail.com>2008-11-21 16:56:24 +0000
commitdf9254c2f3fb7e8b0366f576d452925270c323dd (patch)
tree9eadbc726922fda69333aa06c2723c57ac8d6c8b
parent7f06c373d2e5a4aff8a5fb813d6477856389c6e4 (diff)
[1.0.X] Fixed #9615 -- Typo fix to testcase. Thanks jarrow.
r9519 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9520 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()