From fb3a5bf9db75307fa973774c5d3c9ddca507ab40 Mon Sep 17 00:00:00 2001 From: Chris Dodge Date: Wed, 21 Aug 2013 20:10:36 -0400 Subject: [PATCH] remove unused class --- .../tests/test_import_nostatic.py | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/cms/djangoapps/contentstore/tests/test_import_nostatic.py b/cms/djangoapps/contentstore/tests/test_import_nostatic.py index 1eb36bc75f..aad6ffbfe4 100644 --- a/cms/djangoapps/contentstore/tests/test_import_nostatic.py +++ b/cms/djangoapps/contentstore/tests/test_import_nostatic.py @@ -29,25 +29,6 @@ TEST_DATA_CONTENTSTORE = copy.deepcopy(settings.CONTENTSTORE) TEST_DATA_CONTENTSTORE['OPTIONS']['db'] = 'test_xcontent_%s' % uuid4().hex -class MongoCollectionFindWrapper(object): - ''' - MongoCollectionFindWrapper for testing. - ''' - def __init__(self, original): - """ - intit func - """ - self.original = original - self.counter = 0 - - def find(self, query, *args, **kwargs): - """ - find func - """ - self.counter = self.counter + 1 - return self.original(query, *args, **kwargs) - - @override_settings(CONTENTSTORE=TEST_DATA_CONTENTSTORE) class ContentStoreImportNoStaticTest(ModuleStoreTestCase): """