diff --git a/Tests/TestBase.cs b/Tests/TestBase.cs index 1b537bfaf3..f81e180f69 100644 --- a/Tests/TestBase.cs +++ b/Tests/TestBase.cs @@ -82,16 +82,5 @@ public static T DeserializeJsonResource(byte[] data, JsonSerializerSettings s } } } - - [TestCleanup, DoNotParallelize] - public void Cleanup () - { - // Clean up the test database directory - var testDatabaseDirectory = new DirectoryInfo(testDatabaseDir ); - if ( testDatabaseDirectory.Exists ) - { - testDatabaseDirectory.Delete( true ); - } - } } }