Skip to content

Commit b836c7d

Browse files
committed
Fix test
1 parent f334272 commit b836c7d

File tree

1 file changed

+1
-1
lines changed
  • src/NHibernate.Test/NHSpecificTest/NH3386

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void ShouldSupportNonRuntimeExtensionWithoutEntityReference()
5252
var result = session.Query<Entity>()
5353
.OrderBy(e => SqlServerFunction.NewID());
5454

55-
Assert.DoesNotThrow(() => { result.ToList(); });
55+
Assert.DoesNotThrow(() => result.ToList());
5656
Assert.That(sqlInterceptor.Sql.ToString(), Does.Contain(nameof(SqlServerFunction.NewID)).IgnoreCase);
5757
}
5858
}

0 commit comments

Comments
 (0)