From a8a133cc6cf4c3a5a2deb9d8989ba09b09ace736 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Tue, 20 Jun 2006 02:17:14 +0000 Subject: Fixed #1857 -- Fixed get_previous_by_FIELD and get_next_by_FIELD to work properly with keyword arguments. Patch from tom@jerakeen.org. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3157 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/lookup/models.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests') diff --git a/tests/modeltests/lookup/models.py b/tests/modeltests/lookup/models.py index 9ac53b1677..fc12c99f60 100644 --- a/tests/modeltests/lookup/models.py +++ b/tests/modeltests/lookup/models.py @@ -128,6 +128,8 @@ True >>> a2.get_next_by_pub_date() +>>> a2.get_next_by_pub_date( headline__endswith = '6' ) + >>> a3.get_next_by_pub_date() >>> a4.get_next_by_pub_date() -- cgit v1.3