Skip to content

Commit

Permalink
nhibernateGH-3530: Add missing comma and space after Id field.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Ellingsworth authored and David Ellingsworth committed May 15, 2024
1 parent 5fb17e0 commit 0167b1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NHibernate.Test/NHSpecificTest/GH3530/Fixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ protected override void CreateSchema()
{
sb.Append($"{intType}");
}
sb.Append($" {Dialect.GetIdentityColumnString(DbType.Int32)}");
sb.Append($" {Dialect.GetIdentityColumnString(DbType.Int32)}, ");

// Generate columns
sb.Append($"IntegerValue {stringType}, ");
Expand Down

0 comments on commit 0167b1d

Please sign in to comment.