From 6dbc05140972fe672dc5eed9e40a84f415d33bec Mon Sep 17 00:00:00 2001 From: Harry Marr Date: Tue, 23 Feb 2010 01:14:00 +0000 Subject: [PATCH] Fixed in_bulk test --- tests/queryset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/queryset.py b/tests/queryset.py index ecf7ada1..2a35d70a 100644 --- a/tests/queryset.py +++ b/tests/queryset.py @@ -677,7 +677,7 @@ class QuerySetTest(unittest.TestCase): self.assertTrue(objects[post_1.id].title == post_1.title) self.assertTrue(objects[post_2.id].title == post_2.title) - self.assertTrue(objects[post_3.id].title == post_3.title) + self.assertTrue(objects[post_5.id].title == post_5.title) BlogPost.drop_collection()