This commit is contained in:
Paul Schneider 2021-06-06 22:38:04 +01:00
commit 7b6124ae22
2 changed files with 8 additions and 5 deletions

View file

@ -41,7 +41,10 @@ namespace yavscTests.Mandatory
public void Dispose()
{
_serverFixture.DropTestDb();
if (_serverFixture!=null)
{
_serverFixture.Dispose();
}
}
}