diff --git a/XmlSchemaClassGenerator.Tests/XmlTests.cs b/XmlSchemaClassGenerator.Tests/XmlTests.cs index 758dc75a..bdd3b5bd 100644 --- a/XmlSchemaClassGenerator.Tests/XmlTests.cs +++ b/XmlSchemaClassGenerator.Tests/XmlTests.cs @@ -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, @@ -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,