Skip to content

Commit

Permalink
[System.Runtime.Remoting] Use NotWorking category for test instead of…
Browse files Browse the repository at this point in the history
… Ignore attribute

The TestFixtureSetUp would sometimes fail in CI, but none of the tests in this class are
actually run since they are all either [Category("NotWorking")] or [Ignore].

Moving the one test from Ignore to NotWorking category allows NUnit to recognize there
are no tests to run and skips the unnecessary TestFixtureSetUp completely.
  • Loading branch information
akoeplinger committed Jul 31, 2015
1 parent dd36f93 commit 832f630
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -94,7 +94,7 @@ public ParseURLTestCase (string s0, string s1, string s2)
};

[Test] // HttpChannel.Parse ()
[Ignore ("Fails on MS")]
[Category ("NotWorking")] // Fails on MS
public void ParseURL ()
{
HttpChannel channel;
Expand Down

0 comments on commit 832f630

Please sign in to comment.