From 1c7a9a403a8cdeb300423bec569febe4e52241ba Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 4 Apr 2011 03:42:46 +0000 Subject: [PATCH] Fixed #15738 -- Removed unnecessary line in contrib.contenttypes tests. Thanks, mitnk git-svn-id: http://code.djangoproject.com/svn/django/trunk@16013 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/contenttypes/tests.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/contrib/contenttypes/tests.py b/django/contrib/contenttypes/tests.py index b6b1c5099a..e25503c715 100644 --- a/django/contrib/contenttypes/tests.py +++ b/django/contrib/contenttypes/tests.py @@ -44,7 +44,6 @@ class ContentTypesTests(TestCase): # Once we clear the cache, another lookup will again hit the DB ContentType.objects.clear_cache() ContentType.objects.get_for_model(ContentType) - len(db.connection.queries) self.assertEqual(2, len(db.connection.queries)) def test_shortcut_view(self):