浏览代码

Removed site cache clearing in TestCase._fixture_setup

The test suite doesn't seem to suffer from this removal. Tests
should probably take care themselves to clear caches if they
depend on it.
Claude Paroz 12 年之前
父节点
当前提交
5c55e0fc98
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. 0 3
      django/test/testcases.py

+ 0 - 3
django/test/testcases.py

@@ -820,9 +820,6 @@ class TestCase(TransactionTestCase):
         # Remove this when the legacy transaction management goes away.
         disable_transaction_methods()
 
-        from django.contrib.sites.models import Site
-        Site.objects.clear_cache()
-
         for db in self._databases_names(include_mirrors=False):
             if hasattr(self, 'fixtures'):
                 call_command('loaddata', *self.fixtures,