@@ -477,15 +477,15 @@ public static void Xml_TypeWithFieldNameEndBySpecified()
477477 public static void XML_TypeWithXmlSchemaFormAttribute ( )
478478 {
479479 var value = new TypeWithXmlSchemaFormAttribute ( ) { NoneSchemaFormListProperty = new List < string > { "abc" } , QualifiedSchemaFormListProperty = new List < bool > { true } , UnqualifiedSchemaFormListProperty = new List < int > { 1 } } ;
480- var acutal = SerializeAndDeserialize < TypeWithXmlSchemaFormAttribute > ( value ,
480+ var actual = SerializeAndDeserialize < TypeWithXmlSchemaFormAttribute > ( value ,
481481@"<?xml version=""1.0""?><TypeWithXmlSchemaFormAttribute xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xmlns:xsd=""http://www.w3.org/2001/XMLSchema""><UnqualifiedSchemaFormListProperty><int>1</int></UnqualifiedSchemaFormListProperty><NoneSchemaFormListProperty><NoneParameter>abc</NoneParameter></NoneSchemaFormListProperty><QualifiedSchemaFormListProperty><QualifiedParameter>true</QualifiedParameter></QualifiedSchemaFormListProperty></TypeWithXmlSchemaFormAttribute>" ) ;
482482
483- Assert . StrictEqual ( value . NoneSchemaFormListProperty . Count , acutal . NoneSchemaFormListProperty . Count ) ;
484- Assert . StrictEqual ( value . NoneSchemaFormListProperty [ 0 ] , acutal . NoneSchemaFormListProperty [ 0 ] ) ;
485- Assert . StrictEqual ( value . UnqualifiedSchemaFormListProperty . Count , acutal . UnqualifiedSchemaFormListProperty . Count ) ;
486- Assert . StrictEqual ( value . UnqualifiedSchemaFormListProperty [ 0 ] , acutal . UnqualifiedSchemaFormListProperty [ 0 ] ) ;
487- Assert . StrictEqual ( value . QualifiedSchemaFormListProperty . Count , acutal . QualifiedSchemaFormListProperty . Count ) ;
488- Assert . StrictEqual ( value . QualifiedSchemaFormListProperty [ 0 ] , acutal . QualifiedSchemaFormListProperty [ 0 ] ) ;
483+ Assert . StrictEqual ( value . NoneSchemaFormListProperty . Count , actual . NoneSchemaFormListProperty . Count ) ;
484+ Assert . StrictEqual ( value . NoneSchemaFormListProperty [ 0 ] , actual . NoneSchemaFormListProperty [ 0 ] ) ;
485+ Assert . StrictEqual ( value . UnqualifiedSchemaFormListProperty . Count , actual . UnqualifiedSchemaFormListProperty . Count ) ;
486+ Assert . StrictEqual ( value . UnqualifiedSchemaFormListProperty [ 0 ] , actual . UnqualifiedSchemaFormListProperty [ 0 ] ) ;
487+ Assert . StrictEqual ( value . QualifiedSchemaFormListProperty . Count , actual . QualifiedSchemaFormListProperty . Count ) ;
488+ Assert . StrictEqual ( value . QualifiedSchemaFormListProperty [ 0 ] , actual . QualifiedSchemaFormListProperty [ 0 ] ) ;
489489 }
490490
491491 [ Fact ]
0 commit comments