summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-06-20 04:16:11 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-06-20 04:16:11 +0000
commitb93de6a2cb064de3ae74e7dc01a5ec5d7ff900f6 (patch)
tree0ae53b57ef8e89a5aea827e1673b2e355478cfa7
parentf67b629ada21a8357027ce86dfbdb52dd1065f6b (diff)
Fixed bad formatting in 'lookup' model tests from [3157]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3170 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--tests/modeltests/lookup/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modeltests/lookup/models.py b/tests/modeltests/lookup/models.py
index fc12c99f60..e0c4850ba2 100644
--- a/tests/modeltests/lookup/models.py
+++ b/tests/modeltests/lookup/models.py
@@ -128,7 +128,7 @@ True
<Article: Article 2>
>>> a2.get_next_by_pub_date()
<Article: Article 3>
->>> a2.get_next_by_pub_date( headline__endswith = '6' )
+>>> a2.get_next_by_pub_date(headline__endswith='6')
<Article: Article 6>
>>> a3.get_next_by_pub_date()
<Article: Article 7>