summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-10-14 02:14:15 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-10-14 02:14:15 +0000
commit2c4013e74fcd5f7ba0865448d6ac39ba65463752 (patch)
tree2c2d318d1e3a13a5954c99eeeb332004cc7e57cd /tests
parentb47231ee3e164855590b231d6092e54938d6ae53 (diff)
queryset-refactor: Fixed a problem in the isnull=True handling.
git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@6490 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
-rw-r--r--tests/regressiontests/queries/models.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/regressiontests/queries/models.py b/tests/regressiontests/queries/models.py
index 8a24160419..a20b657154 100644
--- a/tests/regressiontests/queries/models.py
+++ b/tests/regressiontests/queries/models.py
@@ -74,10 +74,8 @@ __test__ = {'API_TESTS':"""
Bug #1050
>>> Item.objects.filter(tags__isnull=True)
[<Item: three>]
-
-# FIXME: Crashes! :-(
-# >>> Item.objects.filter(tags__id__isnull=True)
-# [<Item: three>]
+>>> Item.objects.filter(tags__id__isnull=True)
+[<Item: three>]
Bug #1801
>>> Author.objects.filter(item=i2)