Skip to content

Commit b02729c

Browse files
author
Mark Unsworth
committed
removed the fixture teardown override
1 parent 69e028f commit b02729c

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

tests/utils.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,6 @@ def setUp(self):
1111
if getattr(settings, 'TEST_DEBUG', False):
1212
settings.DEBUG = True
1313

14-
15-
def _fixture_teardown(self):
16-
from django.db import connections
17-
for connection_name in connections:
18-
19-
db_wrapper = connections[connection_name]
20-
21-
for collection_name in db_wrapper.database.collection_names(include_system_collections=False):
22-
db_wrapper.get_collection(collection_name).drop()
23-
24-
25-
26-
2714
def assertEqualLists(self, a, b):
2815
self.assertEqual(list(a), list(b))
2916

0 commit comments

Comments
 (0)