1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

fixed broken builds.

This commit is contained in:
kay.one 2013-08-05 22:29:53 -07:00
parent bac51706ae
commit 3a3d43b702

View File

@ -39,7 +39,11 @@ public void LoggingTestSetup()
[TearDown] [TearDown]
public void LoggingDownBase() public void LoggingDownBase()
{ {
if (TestContext.CurrentContext.Result.State == TestState.Success)
//can't use because of a bug in mono with 2.6.2,
//https://bugs.launchpad.net/nunitv2/+bug/1076932
//if (TestContext.CurrentContext.Result.State == TestState.Success)
{ {
ExceptionVerification.AssertNoUnexcpectedLogs(); ExceptionVerification.AssertNoUnexcpectedLogs();
} }