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()
279279 {
280280 if ( __cluster . IsValueCreated )
281281 {
282- DropDatabase ( ) ;
282+ // TODO: DropDatabase
283+ //DropDatabase();
283284 __cluster . Value . Dispose ( ) ;
284285 __cluster = new Lazy < ICluster > ( CreateCluster , isThreadSafe : true ) ;
285286 }
Original file line number Diff line number Diff line change @@ -30,8 +30,9 @@ public virtual void TestFixtureTearDown()
3030 {
3131 try
3232 {
33- var dropDatabaseOperation = new DropDatabaseOperation ( _databaseNamespace , _messageEncoderSettings ) ;
34- ExecuteOperation ( dropDatabaseOperation ) ;
33+ // TODO: DropDatabase
34+ //var dropDatabaseOperation = new DropDatabaseOperation(_databaseNamespace, _messageEncoderSettings);
35+ //ExecuteOperation(dropDatabaseOperation);
3536 }
3637 catch
3738 {
You can’t perform that action at this time.
0 commit comments