From 5a3521fd071e75fc5d11bf44a59548627a9f1437 Mon Sep 17 00:00:00 2001 From: Karen Tracey Date: Wed, 21 Apr 2010 18:07:23 +0000 Subject: [PATCH] Tweak the last two tests from r13013 to test what they are intended to test instead of repeating 3rd to last test. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13014 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/queryset_pickle/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/regressiontests/queryset_pickle/tests.py b/tests/regressiontests/queryset_pickle/tests.py index f77b4f8cd0..5c64687468 100644 --- a/tests/regressiontests/queryset_pickle/tests.py +++ b/tests/regressiontests/queryset_pickle/tests.py @@ -30,7 +30,7 @@ class PickleabilityTestCase(TestCase): self.assert_pickles(Happening.objects.filter(number2=1)) def test_classmethod_as_default(self): - self.assert_pickles(Happening.objects.filter(number2=1)) + self.assert_pickles(Happening.objects.filter(number3=1)) def test_membermethod_as_default(self): - self.assert_pickles(Happening.objects.filter(number2=1)) + self.assert_pickles(Happening.objects.filter(number4=1))