Skip to content

Commit

Permalink
Fix text execution order
Browse files Browse the repository at this point in the history
  • Loading branch information
AVTit committed Apr 28, 2020
1 parent d9caa9f commit 99c6229
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions XmlSchemaClassGenerator.Tests/XmlTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void TestListWithPrivatePropertySetters()
[Fact]
public void TestListWithPublicPropertySetters()
{
var assembly = Compiler.Generate("List", ListPattern, new Generator {
var assembly = Compiler.Generate("ListPublic", ListPattern, new Generator {
GenerateNullables = true,
IntegerDataType = typeof(int),
DataAnnotationMode = DataAnnotationMode.All,
Expand Down Expand Up @@ -187,7 +187,7 @@ public void TestListWithPublicPropertySetters()
[Fact]
public void TestListWithPublicPropertySettersWithoutConstructors()
{
var assembly = Compiler.Generate("List", ListPattern, new Generator {
var assembly = Compiler.Generate("ListPublicWithoutConstructorInitialization", ListPattern, new Generator {
GenerateNullables = true,
IntegerDataType = typeof(int),
DataAnnotationMode = DataAnnotationMode.All,
Expand Down

0 comments on commit 99c6229

Please sign in to comment.