From 3d46a86bb071e22837a3c9a8505b0ebe833807c6 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 20 Dec 2012 17:49:57 -0800 Subject: [PATCH] Mark occasionally failing test as inconclusive --- NzbDrone.Common.Test/ProcessProviderTests.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NzbDrone.Common.Test/ProcessProviderTests.cs b/NzbDrone.Common.Test/ProcessProviderTests.cs index 7e4c764ac..ade73a3bc 100644 --- a/NzbDrone.Common.Test/ProcessProviderTests.cs +++ b/NzbDrone.Common.Test/ProcessProviderTests.cs @@ -1,6 +1,7 @@ // ReSharper disable InconsistentNaming using System; +using System.ComponentModel; using System.Diagnostics; using System.Linq; using FluentAssertions; @@ -88,6 +89,7 @@ namespace NzbDrone.Common.Test public void ToString_on_new_processInfo() { Console.WriteLine(new ProcessInfo().ToString()); + ExceptionVerification.MarkInconclusive(typeof(Win32Exception)); } }