From deefa07f38682e889f08d8cd9907f42ee03be045 Mon Sep 17 00:00:00 2001 From: "kay.one" Date: Sat, 17 Aug 2013 19:00:29 -0700 Subject: [PATCH] fixed broken tests --- NzbDrone.Test.Common/LoggingTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NzbDrone.Test.Common/LoggingTest.cs b/NzbDrone.Test.Common/LoggingTest.cs index 3970ec32d..992d1588c 100644 --- a/NzbDrone.Test.Common/LoggingTest.cs +++ b/NzbDrone.Test.Common/LoggingTest.cs @@ -48,7 +48,7 @@ namespace NzbDrone.Test.Common //can't use because of a bug in mono with 2.6.2, //https://bugs.launchpad.net/nunitv2/+bug/1076932 - if (OsInfo.IsWindows && TestContext.CurrentContext.Result.State == TestState.Success) + if (BuildInfo.IsDebug && TestContext.CurrentContext.Result.State == TestState.Success) { ExceptionVerification.AssertNoUnexcpectedLogs(); }