diff options
| author | Karen Tracey <kmtracey@gmail.com> | 2010-04-21 18:07:23 +0000 |
|---|---|---|
| committer | Karen Tracey <kmtracey@gmail.com> | 2010-04-21 18:07:23 +0000 |
| commit | 5a3521fd071e75fc5d11bf44a59548627a9f1437 (patch) | |
| tree | 507d3b225cfc428f57331dd3345454d9d0449540 | |
| parent | 3fb57d47bd8d4f6c1d61c9fd9564ae6c1c262027 (diff) | |
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
| -rw-r--r-- | tests/regressiontests/queryset_pickle/tests.py | 4 |
1 files 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)) |
