Better check against internal server error exceptions during unit tests.

This commit is contained in:
kay.one 2012-02-25 11:57:56 -08:00
commit 11db27f6ac
4 changed files with 11 additions and 9 deletions

View file

@ -399,6 +399,7 @@ namespace NzbDrone.Core.Test
ExceptionVerification.MarkInconclusive(typeof(WebException));
ExceptionVerification.MarkInconclusive("System.Net.WebException");
ExceptionVerification.MarkInconclusive("(503) Server Unavailable.");
ExceptionVerification.MarkInconclusive("(500) Internal Server Error.");
}
}
}