From 2a03a9a9a1c4517be75e72899e545b0bc9dd0688 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anssi=20K=C3=A4=C3=A4ri=C3=A4inen?= Date: Sat, 2 Nov 2013 22:42:42 +0200 Subject: [PATCH] Fixed syntax error in queries/tests.py --- tests/queries/tests.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/queries/tests.py b/tests/queries/tests.py index 8a70d1ffe7..c1d461f485 100644 --- a/tests/queries/tests.py +++ b/tests/queries/tests.py @@ -3167,6 +3167,3 @@ class ValuesJoinPromotionTests(TestCase): def test_non_nullable_fk_not_promoted(self): qs = ObjectB.objects.values('objecta__name') self.assertTrue(' INNER JOIN ' in str(qs.query)) - - -class ExcludeJoinTest(TestCase):