From 3a3d43b7023f625a94d7cb8dd95d20b4c130f956 Mon Sep 17 00:00:00 2001 From: "kay.one" Date: Mon, 5 Aug 2013 22:29:53 -0700 Subject: [PATCH] fixed broken builds. --- NzbDrone.Test.Common/LoggingTest.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/NzbDrone.Test.Common/LoggingTest.cs b/NzbDrone.Test.Common/LoggingTest.cs index dca44e8f1..446e54db7 100644 --- a/NzbDrone.Test.Common/LoggingTest.cs +++ b/NzbDrone.Test.Common/LoggingTest.cs @@ -39,7 +39,11 @@ namespace NzbDrone.Test.Common [TearDown] 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(); }