From 26723992e30d1db03c40250c7635374d0cc502d8 Mon Sep 17 00:00:00 2001 From: Harry Marr Date: Sun, 17 Oct 2010 14:14:05 +0100 Subject: [PATCH] Combined Q-object tests --- tests/queryset.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/queryset.py b/tests/queryset.py index 32d1902e..38e1cb33 100644 --- a/tests/queryset.py +++ b/tests/queryset.py @@ -1393,9 +1393,6 @@ class QTest(unittest.TestCase): self.assertEqual(Post.objects.filter(created_user=user).count(), 1) self.assertEqual(Post.objects.filter(Q(created_user=user)).count(), 1) - -class NewQTest(unittest.TestCase): - def test_and_combination(self): """Ensure that Q-objects correctly AND together. """