File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
MongoDB.Driver.Core.TestHelpers
MongoDB.Driver.Core.Tests/Core/Operations Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -279,7 +279,8 @@ public static void TearDown()
279
279
{
280
280
if ( __cluster . IsValueCreated )
281
281
{
282
- DropDatabase ( ) ;
282
+ // TODO: DropDatabase
283
+ //DropDatabase();
283
284
__cluster . Value . Dispose ( ) ;
284
285
__cluster = new Lazy < ICluster > ( CreateCluster , isThreadSafe : true ) ;
285
286
}
Original file line number Diff line number Diff line change @@ -30,8 +30,9 @@ public virtual void TestFixtureTearDown()
30
30
{
31
31
try
32
32
{
33
- var dropDatabaseOperation = new DropDatabaseOperation ( _databaseNamespace , _messageEncoderSettings ) ;
34
- ExecuteOperation ( dropDatabaseOperation ) ;
33
+ // TODO: DropDatabase
34
+ //var dropDatabaseOperation = new DropDatabaseOperation(_databaseNamespace, _messageEncoderSettings);
35
+ //ExecuteOperation(dropDatabaseOperation);
35
36
}
36
37
catch
37
38
{
You can’t perform that action at this time.
0 commit comments