-
Notifications
You must be signed in to change notification settings - Fork 933
Unit test & Fix for GH1704 #1705
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Country = country; | ||
} | ||
public virtual string Country { get; set; } | ||
public virtual string City { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
White-spaces mixup. Sorry but NHibernate uses tabs, please reformat.
@@ -55,6 +55,9 @@ protected override Expression VisitNew(NewExpression expression) | |||
{ | |||
_transformed = true; | |||
// Transform each initializer recursively (to allow for nested initializers) | |||
if(expression.Members == null) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing space before the opening parenthesis.
namespace NHibernate.Test.NHSpecificTest.GH1704 | ||
{ | ||
[TestFixture] | ||
public class Fixture : BugTestCase |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Due to the test nature, it appears to me no async code re-generation has been run, because for such a test, it should have generated an async counterpart. Please run the async generator. (See contributing.)
Thanks for your contribution. |
Thank you! |
A suggested fix for #1704