Skip to content

Commit 369bb31

Browse files
committed
Fixed CodeFactor issue
1 parent e505147 commit 369bb31

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

src/NHibernate.Test/Async/NHSpecificTest/GH2029/Fixture.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
namespace NHibernate.Test.NHSpecificTest.GH2029
2020
{
2121
using System.Threading.Tasks;
22-
2322
[TestFixture]
2423
public class FixtureAsync : TestCaseMappingByCode
2524
{

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@
77

88
namespace NHibernate.Test.NHSpecificTest.GH2029
99
{
10-
public class TestClass
11-
{
12-
public virtual int Id { get; set; }
13-
public virtual int? NullableInt32Prop { get; set; }
14-
public virtual int Int32Prop { get; set; }
15-
public virtual long? NullableInt64Prop { get; set; }
16-
public virtual long Int64Prop { get; set; }
17-
}
18-
1910
[TestFixture]
2011
public class Fixture : TestCaseMappingByCode
2112
{
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace NHibernate.Test.NHSpecificTest.GH2029
8+
{
9+
public class TestClass
10+
{
11+
public virtual int Id { get; set; }
12+
public virtual int? NullableInt32Prop { get; set; }
13+
public virtual int Int32Prop { get; set; }
14+
public virtual long? NullableInt64Prop { get; set; }
15+
public virtual long Int64Prop { get; set; }
16+
}
17+
}

0 commit comments

Comments
 (0)