summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoseph Kocherhans <joseph@jkocherhans.com>2008-04-18 23:53:24 +0000
committerJoseph Kocherhans <joseph@jkocherhans.com>2008-04-18 23:53:24 +0000
commit0f5ffbf23ea85117b04bee0a5fae721ff18e55c1 (patch)
tree6b0abc3899e9c5716fce161ac08308c8083ad670 /tests
parent04932c6f1649672a6d09fa8eff4ef99e6af8aaac (diff)
newforms-admin: Merged from trunk up to [7435].
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7436 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
-rw-r--r--tests/modeltests/or_lookups/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modeltests/or_lookups/models.py b/tests/modeltests/or_lookups/models.py
index ee2cfd2b95..44dda0dc16 100644
--- a/tests/modeltests/or_lookups/models.py
+++ b/tests/modeltests/or_lookups/models.py
@@ -92,7 +92,7 @@ __test__ = {'API_TESTS':"""
>>> Article.objects.filter(Q(headline__contains='bye'), headline__startswith='Hello')
[<Article: Hello and goodbye>]
-# Try some arg queries with operations other than get_list
+# Try some arg queries with operations other than filter.
>>> Article.objects.get(Q(headline__startswith='Hello'), Q(headline__contains='bye'))
<Article: Hello and goodbye>