Skip to content

Commit 8dcdbac

Browse files
committed
Prepate for NUnit 3 making the reason mandatory in IgnoreAttribute.
1 parent c6003f0 commit 8dcdbac

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/NHibernate.Test.VisualBasic/Issues/NH3302/Fixture.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Namespace Issues
66

77
Namespace NH3302
88
'http://msdn.microsoft.com/en-us/library/swf8kaxw.aspx
9-
<TestFixture(), Ignore()> _
9+
<TestFixture(), Ignore("Not fixed yet.")> _
1010
Public Class Fixture
1111
Inherits IssueTestCase
1212

src/NHibernate.Test/Linq/FunctionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ public void Trim()
265265
}
266266
}
267267

268-
[Test, Ignore]
268+
[Test]
269269
public void TrimTrailingWhitespace()
270270
{
271271
using (session.BeginTransaction())

src/NHibernate.Test/NHSpecificTest/NH1289/Fixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace NHibernate.Test.NHSpecificTest.NH1289
77
{
8-
[TestFixture,Ignore]
8+
[TestFixture, Ignore("Not fixed yet.")]
99
public class Fixture:BugTestCase
1010
{
1111
protected override void OnSetUp()

0 commit comments

Comments
 (0)