Skip to content

Commit 1f492f0

Browse files
David EllingsworthDavid Ellingsworth
authored andcommitted
GH-3530: Remove trailing comma and space from last column in table generation.
1 parent 31dcf03 commit 1f492f0

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ private void CreateTable(string name)
5858

5959
// Generate columns
6060
sb.Append($"Id {guidType}, ");
61-
sb.Append($"Value {stringType}, ");
61+
sb.Append($"Value {stringType}");
6262

6363
// Add the primary key contraint for the identity column
6464
sb.Append($", {Dialect.PrimaryKeyString} ( Id )");

0 commit comments

Comments
 (0)