From 9150574c3568098ee45d6232f023df282fa0ed2c Mon Sep 17 00:00:00 2001 From: "kay.one" Date: Sun, 22 Jan 2012 19:16:19 -0800 Subject: [PATCH] Fixed 503 Http errors not marking the test as ignored. --- NzbDrone.Test.Common/ExceptionVerification.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NzbDrone.Test.Common/ExceptionVerification.cs b/NzbDrone.Test.Common/ExceptionVerification.cs index b044dbbd1..c58e2059f 100644 --- a/NzbDrone.Test.Common/ExceptionVerification.cs +++ b/NzbDrone.Test.Common/ExceptionVerification.cs @@ -88,7 +88,7 @@ namespace NzbDrone.Test.Common public static void MarkInconclusive(string text) { - var inconclusiveLogs = _logs.Where(l => l.Message.Contains(text)).ToList(); + var inconclusiveLogs = _logs.Where(l => l.FormattedMessage.Contains(text)).ToList(); if (inconclusiveLogs.Count != 0) {