Catch file exception in test reset

This commit is contained in:
Dean Herbert 2019-12-12 14:04:57 +09:00
parent b6c86d512a
commit 76a7e9cde8
1 changed files with 9 additions and 1 deletions

View File

@ -149,7 +149,15 @@ public void ResetDatabase()
lock (writeLock)
{
recycleThreadContexts();
storage.DeleteDatabase(database_name);
try
{
storage.DeleteDatabase(database_name);
}
catch
{
// for now we are not sure why file handles are kept open by EF, but this is generally only used in testing
}
}
}
}